19 lines
434 B
C#
19 lines
434 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace TestWebSocket
|
|||
|
|
{
|
|||
|
|
public class pmsLog
|
|||
|
|
{
|
|||
|
|
public int pmsid { get; set; }
|
|||
|
|
public int step { get; set; }
|
|||
|
|
public int app { get; set; }
|
|||
|
|
public DateTime Creationtime { get; set; }
|
|||
|
|
public string message { get; set; }
|
|||
|
|
public string Data { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|