Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

17 lignes
526B

  1. using System;
  2. using Newtonsoft.Json;
  3. namespace NScript.Gitea
  4. {
  5. [JsonObject]
  6. public struct Asset
  7. {
  8. [JsonProperty("id")] public int Id;
  9. [JsonProperty("name")] public string Name;
  10. [JsonProperty("size")] public ulong Size;
  11. [JsonProperty("download_count")] public int DownloadCount;
  12. [JsonProperty("created_at")] public DateTime CreatedAt;
  13. [JsonProperty("uuid")] public string Uuid;
  14. [JsonProperty("browser_download_url")] public string BrowserDownloadUrl;
  15. }
  16. }