UpdateLibraryOptionsDto.cs 514 B

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