diff options
| author | Bond-009 <bond.009@outlook.com> | 2023-10-17 14:29:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-17 14:29:19 +0200 |
| commit | 59ac5481288bb75b5768d1286038b5c2d3844c78 (patch) | |
| tree | 1105ad7c2536fad4503adff03ecd6ffb6bcb64b4 /MediaBrowser.Model/System/CastReceiverApplication.cs | |
| parent | 6fce863146edd6ab33b09e18025cce97cc9e85f5 (diff) | |
| parent | 13f46e3fff0cd387a7ed1fe34168e9fd83ea65ef (diff) | |
Merge pull request #10270 from crobibero/chromecast-config
Diffstat (limited to 'MediaBrowser.Model/System/CastReceiverApplication.cs')
| -rw-r--r-- | MediaBrowser.Model/System/CastReceiverApplication.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Model/System/CastReceiverApplication.cs b/MediaBrowser.Model/System/CastReceiverApplication.cs new file mode 100644 index 000000000..6a49a5cac --- /dev/null +++ b/MediaBrowser.Model/System/CastReceiverApplication.cs @@ -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; } +} |
