mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
19 lines
432 B
C#
19 lines
432 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|