2013-06-27 16:36:41 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
|
|
|
{
|
|
|
|
|
public class MediaUrl
|
|
|
|
|
{
|
|
|
|
|
public string Url { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
2013-06-27 16:47:10 +00:00
|
|
|
|
public VideoSize? VideoSize { get; set; }
|
2013-06-27 16:36:41 +00:00
|
|
|
|
public bool IsDirectLink { get; set; }
|
|
|
|
|
}
|
2013-06-27 16:47:10 +00:00
|
|
|
|
|
|
|
|
|
public enum VideoSize
|
|
|
|
|
{
|
|
|
|
|
StandardDefinition,
|
|
|
|
|
HighDefinition
|
|
|
|
|
}
|
2013-06-27 16:36:41 +00:00
|
|
|
|
}
|