jellyfin/MediaBrowser.Model/Entities/MediaUrl.cs

18 lines
352 B
C#
Raw Normal View History


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