diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-09-20 11:48:23 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-09-20 11:48:23 -0400 |
| commit | f6769b73f2a82273e67689e8bc1c9d7b005ee866 (patch) | |
| tree | a8a947f475e47632e61d0b91f421faa245f7198a /MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs | |
| parent | ab207209b8138dccfea82d0fcd39866ff7e2fe9c (diff) | |
add MediaInfo to improve media analysis for video files
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs b/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs new file mode 100644 index 000000000..b3a0dc237 --- /dev/null +++ b/MediaBrowser.Controller/Entities/IHasSpecialFeatures.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; + +namespace MediaBrowser.Controller.Entities +{ + public interface IHasSpecialFeatures + { + /// <summary> + /// Gets or sets the special feature ids. + /// </summary> + /// <value>The special feature ids.</value> + List<Guid> SpecialFeatureIds { get; set; } + } +} |
