2021-05-06 22:39:20 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2021-08-15 15:20:07 +00:00
|
|
|
#pragma warning disable CS1591
|
2020-08-22 19:56:24 +00:00
|
|
|
|
2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 19:25:32 +00:00
|
|
|
using MediaBrowser.Model.Entities;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Collections
|
|
|
|
{
|
|
|
|
public class CollectionCreationOptions : IHasProviderIds
|
|
|
|
{
|
2020-08-22 19:56:24 +00:00
|
|
|
public CollectionCreationOptions()
|
|
|
|
{
|
|
|
|
ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
|
|
|
ItemIdList = Array.Empty<string>();
|
|
|
|
UserIds = Array.Empty<Guid>();
|
|
|
|
}
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
public Guid? ParentId { get; set; }
|
|
|
|
|
|
|
|
public bool IsLocked { get; set; }
|
|
|
|
|
|
|
|
public Dictionary<string, string> ProviderIds { get; set; }
|
|
|
|
|
2021-05-11 11:55:46 +00:00
|
|
|
public IReadOnlyList<string> ItemIdList { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2021-05-11 11:55:46 +00:00
|
|
|
public IReadOnlyList<Guid> UserIds { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|