aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Collections/CollectionCreationOptions.cs
blob: d26bf5b35251a37a6f3ceddcff0b721c174bd908 (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; }
    }
}