aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/LibraryStructureDto/UpdateLibraryOptionsDto.cs
blob: c78ed51f7861c2a3268746198a44cee6059d8747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using MediaBrowser.Model.Configuration;

namespace Jellyfin.Api.Models.LibraryStructureDto
{
    /// <summary>
    /// Update library options dto.
    /// </summary>
    public class UpdateLibraryOptionsDto
    {
        /// <summary>
        /// Gets or sets the library item id.
        /// </summary>
        public Guid Id { get; set; }

        /// <summary>
        /// Gets or sets library options.
        /// </summary>
        public LibraryOptions? LibraryOptions { get; set; }
    }
}