//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
#nullable disable
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.Collections
{
public class CollectionCreationOptions : IHasProviderIds
{
public CollectionCreationOptions()
{
ProviderIds = new Dictionary(StringComparer.OrdinalIgnoreCase);
ItemIdList = Array.Empty();
UserIds = Array.Empty();
}
public string Name { get; set; }
public Guid? ParentId { get; set; }
public bool IsLocked { get; set; }
public Dictionary ProviderIds { get; set; }
public IReadOnlyList ItemIdList { get; set; }
public IReadOnlyList UserIds { get; set; }
}
}