jellyfin-server/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
2014-03-06 00:17:13 -05:00

14 lines
252 B
C#

using System;
namespace MediaBrowser.Controller.Collections
{
public class CollectionCreationOptions
{
public string Name { get; set; }
public Guid ParentId { get; set; }
public bool IsLocked { get; set; }
}
}