//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace Jellyfin.Api.Models.UserDtos;
using System.ComponentModel.DataAnnotations;
///
/// The create user by name request body.
///
public class CreateUserByName
{
///
/// Gets or sets the username.
///
[Required]
public required string Name { get; set; }
///
/// Gets or sets the password.
///
public string? Password { get; set; }
}