blob: 243ccff5c08c37ecfc0266d7d368fa93161ee2fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System.Text.Json.Serialization;
namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos
{
/// <summary>
/// Metadata programs dto.
/// </summary>
public class MetadataProgramsDto
{
/// <summary>
/// Gets or sets the gracenote object.
/// </summary>
[JsonPropertyName("Gracenote")]
public GracenoteDto? Gracenote { get; set; }
}
}
|