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 16:09:36 +03:30
|
|
|
|
[StringLength(11)]
|
2024-04-13 15:03:27 +03:30
|
|
|
|
public string Mobile { get; set; }
|
|
|
|
|
[Required]
|
2024-04-14 16:09:36 +03:30
|
|
|
|
[StringLength(5)]
|
2024-04-13 15:03:27 +03:30
|
|
|
|
public string FullName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|