This commit is contained in:
mmrbnjd
2024-04-13 15:03:27 +03:30
parent 3818cb7636
commit eaf3264c6c
7 changed files with 70 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
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]
public string Mobile { get; set; }
[Required]
public string FullName { get; set; }
}
}