mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
13 lines
252 B
C#
13 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; }
|
|
}
|
|
}
|