using System;
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
///
/// Metadata schedule dto.
///
public class MetadataScheduleDto
{
///
/// Gets or sets the modified timestamp.
///
[JsonPropertyName("modified")]
public string? Modified { get; set; }
///
/// Gets or sets the md5.
///
[JsonPropertyName("md5")]
public string? Md5 { get; set; }
///
/// Gets or sets the start date.
///
[JsonPropertyName("startDate")]
public DateTime? StartDate { get; set; }
///
/// Gets or sets the end date.
///
[JsonPropertyName("endDate")]
public DateTime? EndDate { get; set; }
///
/// Gets or sets the days count.
///
[JsonPropertyName("days")]
public int Days { get; set; }
}
}