This commit is contained in:
mmrbnjd
2024-04-14 22:19:39 +03:30
parent f7e3f3b02a
commit 3f429e0539
8 changed files with 118 additions and 42 deletions

View File

@@ -10,10 +10,10 @@ namespace Shared.DTOs
public class CTicketNoAuthenticationDto:CTicketDto
{
[Required]
[StringLength(11)]
[StringLength(11,MinimumLength =11)]
public string Mobile { get; set; }
[Required]
[StringLength(5)]
[MinLength(4)]
public string FullName { get; set; }
}
}