25 lines
589 B
C#
25 lines
589 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.Scripts.Devices.Ant
|
|
{
|
|
public class ManufacturerDataPageContent
|
|
{
|
|
public int HardwareRevision { get; }
|
|
|
|
public int ManufacturerId { get; }
|
|
|
|
public int ModelNumber { get; }
|
|
|
|
public ManufacturerDataPageContent(int hwRevision, int mfgId, int modelNumber)
|
|
{
|
|
this.HardwareRevision = hwRevision;
|
|
this.ManufacturerId = mfgId;
|
|
this.ModelNumber = modelNumber;
|
|
}
|
|
}
|
|
}
|