jellyfin/Jellyfin.Api/Models/LibraryStructureDto/UpdateLibraryOptionsDto.cs

21 lines
456 B
C#
Raw Normal View History

using System;
using MediaBrowser.Model.Configuration;
2023-01-31 06:18:10 -05:00
namespace Jellyfin.Api.Models.LibraryStructureDto;
/// <summary>
/// Update library options dto.
/// </summary>
public class UpdateLibraryOptionsDto
{
/// <summary>
2023-01-31 06:18:10 -05:00
/// Gets or sets the library item id.
/// </summary>
2023-01-31 06:18:10 -05:00
public Guid Id { get; set; }
2023-01-31 06:18:10 -05:00
/// <summary>
/// Gets or sets library options.
/// </summary>
public LibraryOptions? LibraryOptions { get; set; }
}