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 --- .../Models/UserDtos/AuthenticateUserByName.cs | 25 +++++++++++----------- 1 file changed, 12 insertions(+), 13 deletions(-) (limited to 'Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs') diff --git a/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs b/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs index 31208264f..70c18a98a 100644 --- a/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs +++ b/Jellyfin.Api/Models/UserDtos/AuthenticateUserByName.cs @@ -1,18 +1,17 @@ -namespace Jellyfin.Api.Models.UserDtos +namespace Jellyfin.Api.Models.UserDtos; + +/// +/// The authenticate user by name request body. +/// +public class AuthenticateUserByName { /// - /// The authenticate user by name request body. + /// Gets or sets the username. /// - public class AuthenticateUserByName - { - /// - /// Gets or sets the username. - /// - public string? Username { get; set; } + public string? Username { get; set; } - /// - /// Gets or sets the plain text password. - /// - public string? Pw { get; set; } - } + /// + /// Gets or sets the plain text password. + /// + public string? Pw { get; set; } } -- cgit v1.2.3