diff options
| author | Tim Hobbs <jesus.tesh@gmail.com> | 2014-04-18 00:56:43 -0700 |
|---|---|---|
| committer | Tim Hobbs <jesus.tesh@gmail.com> | 2014-04-18 00:56:43 -0700 |
| commit | 1da36ba59d7449c0f6bf3bb83456fe0ac47a56b2 (patch) | |
| tree | bd3bbd9cfb3a66045a5ffc9d9dda3a8c8425a4a4 /MediaBrowser.Controller/Entities/Video.cs | |
| parent | 3c11988f08c12a35cd2074eb7c5afa6fdaaa04f7 (diff) | |
| parent | b7b6f64f0089d7ce4ff8c3c5682fd8ede7311b1b (diff) | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'MediaBrowser.Controller/Entities/Video.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index 1a02eb056..3ec9e7650 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -26,6 +26,10 @@ namespace MediaBrowser.Controller.Entities public List<Guid> AdditionalPartIds { get; set; } public List<Guid> LocalAlternateVersionIds { get; set; } + public string FormatName { get; set; } + public long? Size { get; set; } + public string Container { get; set; } + public Video() { PlayableStreamFileNames = new List<string>(); |
