aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs
blob: 3b827ec12d41107d04a0bb78d5d328f22abf539a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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!;
    }
}