diff options
| author | Cody Robibero <cody@robibe.ro> | 2020-06-01 09:29:34 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-01 09:29:34 -0600 |
| commit | 297ab2e423235fd53f8e9e06dc4c15ee789278d3 (patch) | |
| tree | 711ec5d157df36687cb3f0958244d569063b8050 /Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs | |
| parent | 5c9503723441826960234364347dc84ebd04ade7 (diff) | |
| parent | 6dbbfcbfbef28e8866aa0144170e1edfff1a2bcb (diff) | |
Merge pull request #2962 from crobibero/api-config
Move ConfigurationService to Jellyfin.Api
Diffstat (limited to 'Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs')
| -rw-r--r-- | Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs | 18 |
1 files changed, 18 insertions, 0 deletions
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 +{ + /// <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; } + } +} |
