jellyfin/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs

28 lines
747 B
C#
Raw Normal View History

using System;
2018-12-28 00:27:57 +01:00
using System.Collections.Generic;
using MediaBrowser.Model.Entities;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Collections
{
public class CollectionCreationOptions : IHasProviderIds
{
public string Name { get; set; }
public Guid? ParentId { get; set; }
public bool IsLocked { get; set; }
public Dictionary<string, string> ProviderIds { get; set; }
public string[] ItemIdList { get; set; }
public Guid[] UserIds { get; set; }
public CollectionCreationOptions()
{
ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
2018-12-27 22:43:48 +01:00
ItemIdList = Array.Empty<string>();
UserIds = Array.Empty<Guid>();
2018-12-28 00:27:57 +01:00
}
}
}