using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
    /// 
    /// Multipart dto.
    /// 
    public class MultipartDto
    {
        /// 
        /// Gets or sets the part number.
        /// 
        [JsonPropertyName("partNumber")]
        public int PartNumber { get; set; }
        /// 
        /// Gets or sets the total parts.
        /// 
        [JsonPropertyName("totalParts")]
        public int TotalParts { get; set; }
    }
}