diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-18 01:03:01 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-18 01:03:01 -0400 |
| commit | 7f320ce0638cd3c26b45bb75184d526f03b18651 (patch) | |
| tree | 7af43a7b7006f10ae78e933c79df6b66978c49c3 /MediaBrowser.Controller/Entities/Video.cs | |
| parent | 818d7990915ef8970a95a226aa4be1851ba3b9e6 (diff) | |
add basic dlna server browsing
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>(); |
