mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:43:07 +03:00
Move ConfigurationService to Jellyfin.Api
This commit is contained in:
18
Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs
Normal file
18
Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user