mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
19 lines
460 B
C#
19 lines
460 B
C#
namespace Jellyfin.Api.Models.ConfigurationDtos
|
|
{
|
|
/// <summary>
|
|
/// Media Encoder Path Dto.
|
|
/// </summary>
|
|
public class MediaEncoderPathDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets media encoder path.
|
|
/// </summary>
|
|
public string Path { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Gets or sets media encoder path type.
|
|
/// </summary>
|
|
public string PathType { get; set; } = null!;
|
|
}
|
|
}
|