DD.WellWorkover.Cloud/AsbCloudApp/Data/User/UserRegistrationDto.cs

15 lines
546 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
2023-03-10 05:42:54 +05:00
2024-08-19 10:01:07 +05:00
namespace AsbCloudApp.Data.User;
/// <inheritdoc/>
public class UserRegistrationDto : UserDto
{
2024-08-19 10:01:07 +05:00
/// <summary>
/// пароль, используется только при регистрации.
/// </summary>
[Required(ErrorMessage = "Пароль не должен быть пустым")]
[StringLength(50, MinimumLength = 3, ErrorMessage = "Допустимая длина пароля от 3 до 50 символов")]
public string Password { get; set; } = null!;
}