| 1234567891011121314151617181920212223242526272829303132 | #nullable disable#pragma warning disable CA2227, CS1591using System;using System.Collections.Generic;using MediaBrowser.Model.Entities;namespace MediaBrowser.Controller.Collections{    public class CollectionCreationOptions : IHasProviderIds    {        public CollectionCreationOptions()        {            ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);            ItemIdList = Array.Empty<string>();            UserIds = Array.Empty<Guid>();        }        public string Name { get; set; }        public Guid? ParentId { get; set; }        public bool IsLocked { get; set; }        public Dictionary<string, string> ProviderIds { get; set; }        public IReadOnlyList<string> ItemIdList { get; set; }        public IReadOnlyList<Guid> UserIds { get; set; }    }}
 |