CollectionCreationOptions.cs 253 B

12345678910111213
  1. using System;
  2. namespace MediaBrowser.Controller.Collections
  3. {
  4. public class CollectionCreationOptions
  5. {
  6. public string Name { get; set; }
  7. public Guid? ParentId { get; set; }
  8. public bool IsLocked { get; set; }
  9. }
  10. }