mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-08-05 21:57:04 +02:00
19 lines
437 B
C#
19 lines
437 B
C#
#nullable disable
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Emby.Server.Implementations.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; }
|
|
}
|
|
}
|