From a06d271725f6e746d9a970f29283ab8f3ebae607 Mon Sep 17 00:00:00 2001 From: crobibero Date: Wed, 22 Apr 2020 13:07:21 -0600 Subject: Move ConfigurationService to Jellyfin.Api --- .../Models/ConfigurationDtos/MediaEncoderPathDto.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs (limited to 'Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs') diff --git a/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs b/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs new file mode 100644 index 000000000..b05e0cdf5 --- /dev/null +++ b/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs @@ -0,0 +1,18 @@ +namespace Jellyfin.Api.Models.ConfigurationDtos +{ + /// + /// Media Encoder Path Dto. + /// + public class MediaEncoderPathDto + { + /// + /// Gets or sets media encoder path. + /// + public string Path { get; set; } + + /// + /// Gets or sets media encoder path type. + /// + public string PathType { get; set; } + } +} -- cgit v1.2.3