mirror of
https://github.com/AIDotNet/AntSK.git
synced 2026-02-17 22:10:14 +08:00
12 lines
328 B
C#
12 lines
328 B
C#
namespace AntSK.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; }
|
|
}
|
|
} |