Files
AntSK/Xzy.KnowledgeBase/Models/AdvancedOperation.cs
2024-02-01 23:12:53 +08:00

12 lines
340 B
C#

namespace Xzy.KnowledgeBase.Models
{
public class AdvancedOperation
{
public string Key { get; set; }
public string Type { get; set; }
public string Name { get; set; }
public string Status { get; set; }
public string UpdatedAt { get; set; }
public string Memo { get; set; }
}
}