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

16 lines
591 B
C#
Raw Normal View History

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