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