18 lines
434 B
C#
18 lines
434 B
C#
using System;
|
|
|
|
namespace NetCore.Model.qw
|
|
{
|
|
|
|
public class bas_pushcmd
|
|
{
|
|
public int id { get; set; }
|
|
public string mevent { get; set; }
|
|
public string title { get; set; }
|
|
public string jsontext { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
public DateTime? endtime { get; set; }
|
|
public int? iscomplete { get; set; }
|
|
public string type { get; set; }
|
|
}
|
|
}
|