CollectionCreationOptions.cs 565 B

12345678910111213141516171819202122
  1. using MediaBrowser.Model.Entities;
  2. using System;
  3. using System.Collections.Generic;
  4. namespace MediaBrowser.Controller.Collections
  5. {
  6. public class CollectionCreationOptions : IHasProviderIds
  7. {
  8. public string Name { get; set; }
  9. public Guid? ParentId { get; set; }
  10. public bool IsLocked { get; set; }
  11. public Dictionary<string, string> ProviderIds { get; set; }
  12. public CollectionCreationOptions()
  13. {
  14. ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
  15. }
  16. }
  17. }