2024-08-30 15:29:48 +02:00
|
|
|
using System;
|
2020-08-31 14:47:57 +02:00
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
|
|
2023-01-31 12:18:10 +01:00
|
|
|
namespace Jellyfin.Api.Models.LibraryStructureDto;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Update library options dto.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class UpdateLibraryOptionsDto
|
2020-08-31 14:47:57 +02:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
2023-01-31 12:18:10 +01:00
|
|
|
/// Gets or sets the library item id.
|
2020-08-31 14:47:57 +02:00
|
|
|
/// </summary>
|
2023-01-31 12:18:10 +01:00
|
|
|
public Guid Id { get; set; }
|
2020-08-31 14:47:57 +02:00
|
|
|
|
2023-01-31 12:18:10 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets library options.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public LibraryOptions? LibraryOptions { get; set; }
|
2020-08-31 14:47:57 +02:00
|
|
|
}
|