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

18 lines
402 B
C#
Raw Normal View History

2023-01-31 06:18:10 -05:00
namespace Jellyfin.Api.Models.ConfigurationDtos;
/// <summary>
/// Media Encoder Path Dto.
/// </summary>
public class MediaEncoderPathDto
{
/// <summary>
2023-01-31 06:18:10 -05:00
/// Gets or sets media encoder path.
/// </summary>
2023-01-31 06:18:10 -05:00
public string Path { get; set; } = null!;
2023-01-31 06:18:10 -05:00
/// <summary>
/// Gets or sets media encoder path type.
/// </summary>
public string PathType { get; set; } = null!;
}