diff options
| author | Claus Vium <clausvium@gmail.com> | 2019-11-24 15:27:58 +0100 |
|---|---|---|
| committer | Claus Vium <clausvium@gmail.com> | 2019-11-24 15:27:58 +0100 |
| commit | 27e3cf15588f8ab8fe19aa611d79fa2ccd8ecda8 (patch) | |
| tree | c422f33524f1c9629729a2a9262eef30f6a0b10a /Jellyfin.Api/Models/StartupDtos/StartupUserDto.cs | |
| parent | 111b46599a66e81a8449e777cccc516c06b7548d (diff) | |
Move appbuilder and service collection to Jellyfin.Server
Diffstat (limited to 'Jellyfin.Api/Models/StartupDtos/StartupUserDto.cs')
| -rw-r--r-- | Jellyfin.Api/Models/StartupDtos/StartupUserDto.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/StartupDtos/StartupUserDto.cs b/Jellyfin.Api/Models/StartupDtos/StartupUserDto.cs new file mode 100644 index 000000000..3a9348037 --- /dev/null +++ b/Jellyfin.Api/Models/StartupDtos/StartupUserDto.cs @@ -0,0 +1,18 @@ +namespace Jellyfin.Api.Models.StartupDtos +{ + /// <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; } + } +} |
