aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs
blob: b05e0cdf5a2c71cce23a6e84022286f0f5a61068 (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; }

        /// <summary>
        /// Gets or sets media encoder path type.
        /// </summary>
        public string PathType { get; set; }
    }
}