aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Dlna/PlayTo/Configuration/DlnaProfile.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Dlna/PlayTo/Configuration/DlnaProfile.cs')
-rw-r--r--MediaBrowser.Dlna/PlayTo/Configuration/DlnaProfile.cs53
1 files changed, 0 insertions, 53 deletions
diff --git a/MediaBrowser.Dlna/PlayTo/Configuration/DlnaProfile.cs b/MediaBrowser.Dlna/PlayTo/Configuration/DlnaProfile.cs
deleted file mode 100644
index 70bda72387..0000000000
--- a/MediaBrowser.Dlna/PlayTo/Configuration/DlnaProfile.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-namespace MediaBrowser.Dlna.PlayTo.Configuration
-{
- public class DlnaProfile
- {
- /// <summary>
- /// Gets or sets the name to be displayed.
- /// </summary>
- /// <value>
- /// The name.
- /// </value>
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or sets the type of the client.
- /// </summary>
- /// <value>
- /// The type of the client.
- /// </value>
- public string ClientType { get; set; }
-
- /// <summary>
- /// Gets or sets the name of the friendly.
- /// </summary>
- /// <value>
- /// The name of the friendly.
- /// </value>
- public string FriendlyName { get; set; }
-
- /// <summary>
- /// Gets or sets the model number.
- /// </summary>
- /// <value>
- /// The model number.
- /// </value>
- public string ModelNumber { get; set; }
-
- /// <summary>
- /// Gets or sets the name of the model.
- /// </summary>
- /// <value>
- /// The name of the model.
- /// </value>
- public string ModelName { get; set; }
-
- /// <summary>
- /// Gets or sets the transcode settings.
- /// </summary>
- /// <value>
- /// The transcode settings.
- /// </value>
- public TranscodeSetting[] TranscodeSettings { get; set; }
- }
-}