You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
520 B
21 lines
520 B
|
|
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[] { };
|
|
}
|
|
}
|
|
}
|