aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
blob: 089f9b6ad276d53761739e4c9fe524e6d6cff7a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace MediaBrowser.Controller.Collections
{
    public class CollectionCreationOptions
    {
        public string Name { get; set; }

        public Guid? ParentId { get; set; }

        public bool IsLocked { get; set; }
    }
}