jellyfin/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs

19 lines
460 B
C#
Raw Normal View History

namespace Jellyfin.Api.Models.ConfigurationDtos
{
/// <summary>
/// Media Encoder Path Dto.
/// </summary>
public class MediaEncoderPathDto
{
/// <summary>
/// Gets or sets media encoder path.
/// </summary>
2020-06-13 21:11:41 +02:00
public string Path { get; set; } = null!;
/// <summary>
/// Gets or sets media encoder path type.
/// </summary>
2020-06-13 21:11:41 +02:00
public string PathType { get; set; } = null!;
}
}