diff options
Diffstat (limited to 'Jellyfin.Api/Models/Startup/StartupUserDto.cs')
| -rw-r--r-- | Jellyfin.Api/Models/Startup/StartupUserDto.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/Startup/StartupUserDto.cs b/Jellyfin.Api/Models/Startup/StartupUserDto.cs index c7c2e8cb0..7e890d76a 100644 --- a/Jellyfin.Api/Models/Startup/StartupUserDto.cs +++ b/Jellyfin.Api/Models/Startup/StartupUserDto.cs @@ -1,8 +1,18 @@ namespace Jellyfin.Api.Models.Startup { + /// <summary> + /// The startup user DTO. + /// </summary> public class StartupUserDto { + /// <summary> + /// Gets or sets the username. + /// </summary> public string Name { get; set; } + + /// <summary> + /// Gets or sets the user's password. + /// </summary> public string Password { get; set; } } } |
