aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs
blob: 3706a11e3abe5b6aae3b7e4fca100059a5ecc4ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#nullable enable

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!;
    }
}