2014-03-06 05:17:13 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Collections
|
|
|
|
|
{
|
|
|
|
|
public class CollectionCreationOptions
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
2014-03-07 15:53:23 +00:00
|
|
|
|
public Guid? ParentId { get; set; }
|
2014-03-06 05:17:13 +00:00
|
|
|
|
|
|
|
|
|
public bool IsLocked { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|