MediaUpdateInfoPathDto.cs 411 B

123456789101112131415161718
  1. namespace Jellyfin.Api.Models.LibraryDtos;
  2. /// <summary>
  3. /// The media update info path.
  4. /// </summary>
  5. public class MediaUpdateInfoPathDto
  6. {
  7. /// <summary>
  8. /// Gets or sets media path.
  9. /// </summary>
  10. public string? Path { get; set; }
  11. /// <summary>
  12. /// Gets or sets media update type.
  13. /// Created, Modified, Deleted.
  14. /// </summary>
  15. public string? UpdateType { get; set; }
  16. }