mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-09 10:01:50 +08:00
31 lines
626 B
C#
31 lines
626 B
C#
#nullable disable
|
|
namespace Netch.Models.GitHubRelease;
|
|
|
|
public class Asset
|
|
{
|
|
public string url { get; set; }
|
|
|
|
public int id { get; set; }
|
|
|
|
public string node_id { get; set; }
|
|
|
|
public string name { get; set; }
|
|
|
|
public object label { get; set; }
|
|
|
|
public GitHubUser uploader { get; set; }
|
|
|
|
public string content_type { get; set; }
|
|
|
|
public string state { get; set; }
|
|
|
|
public int size { get; set; }
|
|
|
|
public int download_count { get; set; }
|
|
|
|
public DateTime created_at { get; set; }
|
|
|
|
public DateTime updated_at { get; set; }
|
|
|
|
public string browser_download_url { get; set; }
|
|
} |