MultipartDto.cs 583 B

123456789101112131415161718192021222324
  1. #nullable disable
  2. using System.Text.Json.Serialization;
  3. namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
  4. {
  5. /// <summary>
  6. /// Multipart dto.
  7. /// </summary>
  8. public class MultipartDto
  9. {
  10. /// <summary>
  11. /// Gets or sets the part number.
  12. /// </summary>
  13. [JsonPropertyName("partNumber")]
  14. public int PartNumber { get; set; }
  15. /// <summary>
  16. /// Gets or sets the total parts.
  17. /// </summary>
  18. [JsonPropertyName("totalParts")]
  19. public int TotalParts { get; set; }
  20. }
  21. }