MediaUpdateInfoDto.cs 421 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Jellyfin.Api.Models.LibraryDtos
  4. {
  5. /// <summary>
  6. /// Media Update Info Dto.
  7. /// </summary>
  8. public class MediaUpdateInfoDto
  9. {
  10. /// <summary>
  11. /// Gets or sets the list of updates.
  12. /// </summary>
  13. public IReadOnlyList<MediaUpdateInfoPathDto> Updates { get; set; } = Array.Empty<MediaUpdateInfoPathDto>();
  14. }
  15. }