Migrate to file-scoped namespaces

This commit is contained in:
Shadowghost
2023-01-31 12:18:10 +01:00
parent 58b3945805
commit f5f890e685
163 changed files with 23939 additions and 24102 deletions

View File

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