jellyfin/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs

28 lines
747 B
C#
Raw Normal View History

using System;
2018-12-27 18:27:57 -05:00
using System.Collections.Generic;
using MediaBrowser.Model.Entities;
2018-12-27 18:27:57 -05: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 16:43:48 -05:00
ItemIdList = Array.Empty<string>();
UserIds = Array.Empty<Guid>();
2018-12-27 18:27:57 -05:00
}
}
}