From f5f890e68562e55d4bed16c454c4b4305152b296 Mon Sep 17 00:00:00 2001 From: Shadowghost Date: Tue, 31 Jan 2023 12:18:10 +0100 Subject: Migrate to file-scoped namespaces --- .../ConfigurationDtos/MediaEncoderPathDto.cs | 25 +++++++++++----------- 1 file changed, 12 insertions(+), 13 deletions(-) (limited to 'Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs') diff --git a/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs b/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs index 3b827ec12..5a48345eb 100644 --- a/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs +++ b/Jellyfin.Api/Models/ConfigurationDtos/MediaEncoderPathDto.cs @@ -1,18 +1,17 @@ -namespace Jellyfin.Api.Models.ConfigurationDtos +namespace Jellyfin.Api.Models.ConfigurationDtos; + +/// +/// Media Encoder Path Dto. +/// +public class MediaEncoderPathDto { /// - /// Media Encoder Path Dto. + /// Gets or sets media encoder path. /// - public class MediaEncoderPathDto - { - /// - /// Gets or sets media encoder path. - /// - public string Path { get; set; } = null!; + public string Path { get; set; } = null!; - /// - /// Gets or sets media encoder path type. - /// - public string PathType { get; set; } = null!; - } + /// + /// Gets or sets media encoder path type. + /// + public string PathType { get; set; } = null!; } -- cgit v1.2.3