2020-04-22 19:07:21 +00:00
|
|
|
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 19:11:41 +00:00
|
|
|
public string Path { get; set; } = null!;
|
2020-04-22 19:07:21 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets media encoder path type.
|
|
|
|
/// </summary>
|
2020-06-13 19:11:41 +00:00
|
|
|
public string PathType { get; set; } = null!;
|
2020-04-22 19:07:21 +00:00
|
|
|
}
|
|
|
|
}
|