diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2020-06-20 16:52:58 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-20 16:52:58 +0000 |
| commit | 804764e1fbf71e083479fc4069f90bab96faa84f (patch) | |
| tree | 957a44eed3678ad72e9272b3bc4aa20c939f7d36 /Jellyfin.Api/Models/UserDtos/CreateUserByName.cs | |
| parent | e26f487fc8c7f0c5e2926c87845d030ff64ab60d (diff) | |
| parent | 68ea589f1af5bc5fdc656013d6e5d1deec99341f (diff) | |
Merge pull request #3363 from Ullmie02/api-user
Move UserService to Jellyfin.Api
Diffstat (limited to 'Jellyfin.Api/Models/UserDtos/CreateUserByName.cs')
| -rw-r--r-- | Jellyfin.Api/Models/UserDtos/CreateUserByName.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/UserDtos/CreateUserByName.cs b/Jellyfin.Api/Models/UserDtos/CreateUserByName.cs new file mode 100644 index 000000000..1c88d3628 --- /dev/null +++ b/Jellyfin.Api/Models/UserDtos/CreateUserByName.cs @@ -0,0 +1,18 @@ +namespace Jellyfin.Api.Models.UserDtos +{ + /// <summary> + /// The create user by name request body. + /// </summary> + public class CreateUserByName + { + /// <summary> + /// Gets or sets the username. + /// </summary> + public string? Name { get; set; } + + /// <summary> + /// Gets or sets the password. + /// </summary> + public string? Password { get; set; } + } +} |
