SafeNet/SN_Server/Unit.cs

32 lines
599 B
C#
Raw Normal View History

2021-02-24 11:50:23 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SN_Server
{
public class Unit
{
private int dbID;
public int DBid
{
get { return dbID; }
set { dbID = value; }
}
private string radioID;
public string RadioID
{
get { return radioID; }
set { radioID = value; }
}
private int reporting;
public int Reporting
{
get { return reporting; }
set { reporting = value; }
}
}
}