UpdateLibraryOptionsDto.cs 453 B

1234567891011121314151617181920
  1. using System;
  2. using MediaBrowser.Model.Configuration;
  3. namespace Jellyfin.Api.Models.LibraryStructureDto;
  4. /// <summary>
  5. /// Update library options dto.
  6. /// </summary>
  7. public class UpdateLibraryOptionsDto
  8. {
  9. /// <summary>
  10. /// Gets or sets the library item id.
  11. /// </summary>
  12. public Guid Id { get; set; }
  13. /// <summary>
  14. /// Gets or sets library options.
  15. /// </summary>
  16. public LibraryOptions? LibraryOptions { get; set; }
  17. }