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

16 lines
352 B
C#
Raw Normal View History

2025-02-19 15:58:42 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
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; }
}
}