jellyfin/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/CaptionDto.cs

23 lines
539 B
C#
Raw Normal View History

2021-08-29 00:32:50 +02:00
using System.Text.Json.Serialization;
namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
/// <summary>
/// Caption dto.
/// </summary>
public class CaptionDto
{
/// <summary>
/// Gets or sets the content.
/// </summary>
[JsonPropertyName("content")]
2021-09-03 18:59:40 +02:00
public string? Content { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the lang.
/// </summary>
[JsonPropertyName("lang")]
2021-09-03 18:59:40 +02:00
public string? Lang { get; set; }
2021-08-29 00:32:50 +02:00
}
}