You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
429 B
18 lines
429 B
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; }
|
|
}
|