aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.LiveTv/Listings/SchedulesDirectDtos/CaptionDto.cs
blob: 0cc39f3bb58b8e971c0525b3083bc11008aab6b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System.Text.Json.Serialization;

namespace Jellyfin.LiveTv.Listings.SchedulesDirectDtos
{
    /// <summary>
    /// Caption dto.
    /// </summary>
    public class CaptionDto
    {
        /// <summary>
        /// Gets or sets the content.
        /// </summary>
        [JsonPropertyName("content")]
        public string? Content { get; set; }

        /// <summary>
        /// Gets or sets the lang.
        /// </summary>
        [JsonPropertyName("lang")]
        public string? Lang { get; set; }
    }
}