32 lines
599 B
C#
32 lines
599 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|