Files
moadiran/Shared/DTOs/CTicketNoAuthenticationDto.cs

20 lines
452 B
C#
Raw Permalink Normal View History

2024-04-13 15:03:27 +03:30
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]
2024-04-14 22:19:39 +03:30
[StringLength(11,MinimumLength =11)]
2024-04-13 15:03:27 +03:30
public string Mobile { get; set; }
[Required]
2024-04-14 22:19:39 +03:30
[MinLength(4)]
2024-04-13 15:03:27 +03:30
public string FullName { get; set; }
}
}