MediaEncoderPathDto.cs 478 B

1234567891011121314151617181920
  1. #nullable enable
  2. namespace Jellyfin.Api.Models.ConfigurationDtos
  3. {
  4. /// <summary>
  5. /// Media Encoder Path Dto.
  6. /// </summary>
  7. public class MediaEncoderPathDto
  8. {
  9. /// <summary>
  10. /// Gets or sets media encoder path.
  11. /// </summary>
  12. public string Path { get; set; } = null!;
  13. /// <summary>
  14. /// Gets or sets media encoder path type.
  15. /// </summary>
  16. public string PathType { get; set; } = null!;
  17. }
  18. }