made video size richer

This commit is contained in:
Luke Pulverenti
2013-06-27 12:47:10 -04:00
parent 5782d9084d
commit cf61bf72dc
2 changed files with 8 additions and 2 deletions

View File

@@ -5,7 +5,13 @@ namespace MediaBrowser.Model.Entities
{
public string Url { get; set; }
public string Name { get; set; }
public bool? IsHD { get; set; }
public VideoSize? VideoSize { get; set; }
public bool IsDirectLink { get; set; }
}
public enum VideoSize
{
StandardDefinition,
HighDefinition
}
}