aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-26 11:06:48 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-26 11:06:48 -0400
commit4e2764e516ba62506aa85765401769d0bc7192aa (patch)
tree38a542cb18078285031a38007c5149474eac4917 /MediaBrowser.Model/Dlna
parent31e8288393bead548e815a081c34d7e688fa0643 (diff)
Create profile xml structure
Diffstat (limited to 'MediaBrowser.Model/Dlna')
-rw-r--r--MediaBrowser.Model/Dlna/DeviceProfileInfo.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Dlna/DeviceProfileInfo.cs b/MediaBrowser.Model/Dlna/DeviceProfileInfo.cs
new file mode 100644
index 0000000000..ceb27386c1
--- /dev/null
+++ b/MediaBrowser.Model/Dlna/DeviceProfileInfo.cs
@@ -0,0 +1,30 @@
+
+namespace MediaBrowser.Model.Dlna
+{
+ public class DeviceProfileInfo
+ {
+ /// <summary>
+ /// Gets or sets the identifier.
+ /// </summary>
+ /// <value>The identifier.</value>
+ public string Id { get; set; }
+
+ /// <summary>
+ /// Gets or sets the name.
+ /// </summary>
+ /// <value>The name.</value>
+ public string Name { get; set; }
+
+ /// <summary>
+ /// Gets or sets the type.
+ /// </summary>
+ /// <value>The type.</value>
+ public DeviceProfileType Type { get; set; }
+ }
+
+ public enum DeviceProfileType
+ {
+ System = 0,
+ User = 1
+ }
+}