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

23 lines
543 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>
/// Content rating dto.
/// </summary>
public class ContentRatingDto
{
/// <summary>
/// Gets or sets the body.
/// </summary>
[JsonPropertyName("body")]
2021-09-03 18:59:40 +02:00
public string? Body { get; set; }
2021-08-29 00:32:50 +02:00
/// <summary>
/// Gets or sets the code.
/// </summary>
[JsonPropertyName("code")]
2021-09-03 18:59:40 +02:00
public string? Code { get; set; }
2021-08-29 00:32:50 +02:00
}
}