23 lines
622 B
C#
23 lines
622 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace TestWebSocket
|
|||
|
|
{
|
|||
|
|
public class facedevicerxtxinfo
|
|||
|
|
{
|
|||
|
|
public int pmsid { get; set; }
|
|||
|
|
public string sn { get; set; }
|
|||
|
|
public string msgid { get; set; }
|
|||
|
|
public string cmd { get; set; }
|
|||
|
|
public string data { get; set; }
|
|||
|
|
public DateTime datatime { get; set; }
|
|||
|
|
public string direction { get; set; }
|
|||
|
|
public int trresult { get; set; }
|
|||
|
|
public string ipaddr { get; set; }
|
|||
|
|
public string iplocation { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|