diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-15 11:17:46 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-15 11:17:46 -0400 |
| commit | 9a6afa92889c57e5f7b0e8cc937376fe6393ebb4 (patch) | |
| tree | f0bd1bf7a2498328ef07e0fcdc648d2475e5c0f0 /MediaBrowser.Controller/Collections/CollectionCreationOptions.cs | |
| parent | d55af4f5292236317f572e0bddfe9575a21c4662 (diff) | |
Add new params to collection creation
Diffstat (limited to 'MediaBrowser.Controller/Collections/CollectionCreationOptions.cs')
| -rw-r--r-- | MediaBrowser.Controller/Collections/CollectionCreationOptions.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs b/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs index e147e0905..74ae42095 100644 --- a/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs +++ b/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs @@ -14,9 +14,12 @@ namespace MediaBrowser.Controller.Collections public Dictionary<string, string> ProviderIds { get; set; } + public List<Guid> ItemIdList { get; set; } + public CollectionCreationOptions() { ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); + ItemIdList = new List<Guid>(); } } } |
