ResponseListLauncherFiles.cs 304 B

123456789101112
  1. using Newtonsoft.Json;
  2. using System.Collections.Generic;
  3. namespace LauncherUpdater.Response
  4. {
  5. internal class ResponseListLauncherFiles
  6. {
  7. [JsonProperty("totalBytes")] public double TotalBytes { get; set; }
  8. [JsonProperty("files")] public List<Files> Files { get; set; }
  9. }
  10. }