MediaUpdateInfoPathDto.cs 476 B

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