Move ConfigurationService to Jellyfin.Api

This commit is contained in:
crobibero
2020-04-22 13:07:21 -06:00
parent a2f19eadf7
commit a06d271725
3 changed files with 146 additions and 146 deletions

View File

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