66 lines
1.8 KiB
C#
66 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SafeMobileLib
|
|
{
|
|
public class ConnPlussCFG
|
|
{
|
|
public string IP;
|
|
public int ars_port;
|
|
public int lrrp_port;
|
|
public int sms_port;
|
|
public int r_lrrp_port;
|
|
public int r_sms_port;
|
|
}
|
|
|
|
|
|
public class RepeaterConfig
|
|
{
|
|
public Int32 ConfigID { get; set; }
|
|
public Int64 Version { get; set; }
|
|
public String AuthenticationKey { get; set; }
|
|
public Int32 ARSPort { get; set; }
|
|
public Int32 LocationPort { get; set; }
|
|
public Int32 TextPort { get; set; }
|
|
public Int32 TelemetryPort { get; set; }
|
|
public Int32 TallysmanPort { get; set; }
|
|
public Int32 DDMSPort { get; set; }
|
|
public String DDMSIP { get; set; }
|
|
public Int64 GatewayID { get; set; }
|
|
public Int64 GatewayCode { get; set; }
|
|
public Int64 PeerID { get; set; }
|
|
public String RepeaterIP { get; set; }
|
|
public Int32 RepeaterPort { get; set; }
|
|
public String Slot1 { get; set; }
|
|
public String Slot2 { get; set; }
|
|
public String SystemType { get; set; }
|
|
}
|
|
|
|
public class SimocoConfig
|
|
{
|
|
public Int32 ConfigID { get; set; }
|
|
public Int64 GatewayID { get; set; }
|
|
public Int64 GatewayCode { get; set; }
|
|
public Int64 PeerID { get; set; }
|
|
public String AISServerIP { get; set; }
|
|
public Int32 AISServerPort { get; set; }
|
|
public Int32 SIPLocalPort { get; set; }
|
|
public Int32 RTPPort { get; set; }
|
|
|
|
}
|
|
|
|
public class SafenetGatewayIdent
|
|
{
|
|
public Int64 Id { get; set; }
|
|
public Int64 Code { get; set; }
|
|
|
|
public SafenetGatewayIdent(Int64 Id, Int64 Code)
|
|
{
|
|
this.Id = Id;
|
|
this.Code = Code;
|
|
}
|
|
}
|
|
|
|
}
|