aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Dlna/MediaProfile.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Dlna/MediaProfile.cs')
-rw-r--r--MediaBrowser.Controller/Dlna/MediaProfile.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Dlna/MediaProfile.cs b/MediaBrowser.Controller/Dlna/MediaProfile.cs
new file mode 100644
index 0000000000..c237b1f912
--- /dev/null
+++ b/MediaBrowser.Controller/Dlna/MediaProfile.cs
@@ -0,0 +1,20 @@
+
+namespace MediaBrowser.Controller.Dlna
+{
+ public class MediaProfile
+ {
+ public string Container { get; set; }
+ public string[] AudioCodecs { get; set; }
+ public string[] VideoCodecs { get; set; }
+
+ public DlnaProfileType Type { get; set; }
+ public string OrgPn { get; set; }
+ public string MimeType { get; set; }
+
+ public MediaProfile()
+ {
+ AudioCodecs = new string[] { };
+ VideoCodecs = new string[] { };
+ }
+ }
+}