jellyfin-server/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MetadataScheduleDto.cs

41 lines
1.0 KiB
C#
Raw Normal View History

2021-08-28 22:32:50 +00:00
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
/// <summary>
/// Metadata schedule dto.
/// </summary>
public class MetadataScheduleDto
{
/// <summary>
/// Gets or sets the modified timestamp.
/// </summary>
[JsonPropertyName("modified")]
2021-09-03 16:59:40 +00:00
public string? Modified { get; set; }
2021-08-28 22:32:50 +00:00
/// <summary>
/// Gets or sets the md5.
/// </summary>
[JsonPropertyName("md5")]
2021-09-03 16:59:40 +00:00
public string? Md5 { get; set; }
2021-08-28 22:32:50 +00:00
/// <summary>
/// Gets or sets the start date.
/// </summary>
[JsonPropertyName("startDate")]
2021-09-03 16:59:40 +00:00
public string? StartDate { get; set; }
2021-08-28 22:32:50 +00:00
/// <summary>
/// Gets or sets the end date.
/// </summary>
[JsonPropertyName("endDate")]
2021-09-03 16:59:40 +00:00
public string? EndDate { get; set; }
2021-08-28 22:32:50 +00:00
/// <summary>
/// Gets or sets the days count.
/// </summary>
[JsonPropertyName("days")]
public int Days { get; set; }
}
}