SGGL_SHJ/SGGL/Model/APIItem/CQMS/ToDoModel.cs

11 lines
266 B
C#
Raw Normal View History

2022-09-05 16:36:31 +08:00
namespace Model
{
public class ToDoModel
{
public string Title { get; set; }
public string ID { get; set; }
public string Type { get; set; }
public string State { get; set; }
public object Data { get; set; }
}
}