namespace dy.net.model.dto { //如果好用,请收藏地址,帮忙分享。 public class ImageTagInfoItem { /// /// /// public string Architecture { get; set; } /// /// /// public string Author { get; set; } /// /// /// public string CreationTime { get; set; } /// /// /// public string DockerVersion { get; set; } /// /// /// public string DurationDays { get; set; } /// /// /// public int Id { get; set; } /// /// /// public string ImageId { get; set; } /// /// /// public string Kind { get; set; } /// /// /// public string OS { get; set; } /// /// /// public string PushTime { get; set; } /// /// /// public string Size { get; set; } /// /// /// public int SizeByte { get; set; } /// /// /// public string TagId { get; set; } /// /// /// public string TagName { get; set; } /// /// /// public string UpdateTime { get; set; } } public class ImageData { /// /// /// public string RepoName { get; set; } /// /// /// public string Server { get; set; } /// /// /// public int TagCount { get; set; } /// /// /// public List TagInfo { get; set; } } public class ImageResponse { /// /// /// public ImageData Data { get; set; } /// /// /// public string RequestId { get; set; } } public class TenImageApiResponse { /// /// /// public ImageResponse Response { get; set; } } }