jellyfin/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs

14 lines
253 B
C#
Raw Normal View History

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