refined collection editing

This commit is contained in:
Luke Pulverenti
2014-03-07 23:20:31 -05:00
parent 9b55579a85
commit c6bd890cb2
2 changed files with 17 additions and 4 deletions

View File

@@ -1,13 +1,22 @@
using System;
using MediaBrowser.Model.Entities;
using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Collections
{
public class CollectionCreationOptions
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 CollectionCreationOptions()
{
ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
}
}