aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/CastReceiverApplication.cs
blob: 6a49a5cac4165f27b69bcced51e9c93b341a59db (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; }
}