62 lines
1.2 KiB
C#
62 lines
1.2 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace MotoRepeater
|
|||
|
{
|
|||
|
public class SMS
|
|||
|
{
|
|||
|
private int dbid;
|
|||
|
public int DBid
|
|||
|
{
|
|||
|
get { return dbid; }
|
|||
|
set { dbid = value; }
|
|||
|
}
|
|||
|
|
|||
|
private int suDBid;
|
|||
|
public int SUDBid
|
|||
|
{
|
|||
|
get { return suDBid; }
|
|||
|
set { suDBid = value; }
|
|||
|
}
|
|||
|
|
|||
|
private string radioID;
|
|||
|
public string RadioID
|
|||
|
{
|
|||
|
get { return radioID; }
|
|||
|
set { radioID = value; }
|
|||
|
}
|
|||
|
|
|||
|
private string msg;
|
|||
|
public string Msg
|
|||
|
{
|
|||
|
get { return msg; }
|
|||
|
set { msg = value; }
|
|||
|
}
|
|||
|
|
|||
|
private bool conf;
|
|||
|
public bool Conf
|
|||
|
{
|
|||
|
get { return conf; }
|
|||
|
set { conf = value; }
|
|||
|
}
|
|||
|
|
|||
|
private int _seq_no;
|
|||
|
|
|||
|
public int seq_no
|
|||
|
{
|
|||
|
get { return _seq_no; }
|
|||
|
set { _seq_no = value; }
|
|||
|
}
|
|||
|
|
|||
|
private DateTime _waitConfSMSList_time;
|
|||
|
|
|||
|
public DateTime waitConfSMSList_time
|
|||
|
{
|
|||
|
get { return _waitConfSMSList_time; }
|
|||
|
set { _waitConfSMSList_time = value; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|