aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/CastDto.cs
blob: 0b7a2c63ad2fe20296ef6b0aa33e74942bbc44a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System.Text.Json.Serialization;

namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
{
    /// <summary>
    /// Cast dto.
    /// </summary>
    public class CastDto
    {
        /// <summary>
        /// Gets or sets the billing order.
        /// </summary>
        [JsonPropertyName("billingOrder")]
        public string? BillingOrder { get; set; }

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

        /// <summary>
        /// Gets or sets the name id.
        /// </summary>
        [JsonPropertyName("nameId")]
        public string? NameId { get; set; }

        /// <summary>
        /// Gets or sets the person id.
        /// </summary>
        [JsonPropertyName("personId")]
        public string? PersonId { get; set; }

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

        /// <summary>
        /// Gets or sets the character name.
        /// </summary>
        [JsonPropertyName("characterName")]
        public string? CharacterName { get; set; }
    }
}