mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03:00
Migrate to file-scoped namespaces
This commit is contained in:
@@ -1,18 +1,17 @@
|
||||
namespace Jellyfin.Api.Models.ConfigurationDtos
|
||||
namespace Jellyfin.Api.Models.ConfigurationDtos;
|
||||
|
||||
/// <summary>
|
||||
/// Media Encoder Path Dto.
|
||||
/// </summary>
|
||||
public class MediaEncoderPathDto
|
||||
{
|
||||
/// <summary>
|
||||
/// Media Encoder Path Dto.
|
||||
/// Gets or sets media encoder path.
|
||||
/// </summary>
|
||||
public class MediaEncoderPathDto
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets media encoder path.
|
||||
/// </summary>
|
||||
public string Path { get; set; } = null!;
|
||||
public string Path { get; set; } = null!;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets media encoder path type.
|
||||
/// </summary>
|
||||
public string PathType { get; set; } = null!;
|
||||
}
|
||||
/// <summary>
|
||||
/// Gets or sets media encoder path type.
|
||||
/// </summary>
|
||||
public string PathType { get; set; } = null!;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user