Files
moadiran/Shared/DTOs/CTicketNoAuthenticationDto.cs
mmrbnjd 3f429e0539 ...
2024-04-14 22:19:39 +03:30

20 lines
452 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class CTicketNoAuthenticationDto:CTicketDto
{
[Required]
[StringLength(11,MinimumLength =11)]
public string Mobile { get; set; }
[Required]
[MinLength(4)]
public string FullName { get; set; }
}
}