MediaEncoderPathDto.cs 460 B

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