aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/CastReceiverApplication.cs
blob: 43c3f2eaa15be69823b6611566782bb6dbc1c126 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace MediaBrowser.Model.System;

/// <summary>
/// The cast receiver application model.
/// </summary>
public class CastReceiverApplication
{
    /// <summary>
    /// Gets or sets the cast receiver application id.
    /// </summary>
    public required string Id { get; set; }

    /// <summary>
    /// Gets or sets the cast receiver application name.
    /// </summary>
    public required string Name { get; set; }
}