mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
Migrate to customizable cast receiver config
This commit is contained in:
17
MediaBrowser.Model/System/CastReceiverApplication.cs
Normal file
17
MediaBrowser.Model/System/CastReceiverApplication.cs
Normal file
@@ -0,0 +1,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; }
|
||||
}
|
||||
Reference in New Issue
Block a user