Files
moadiran/Shared/DTOs/CTicketNoAuthenticationDto.cs
mmrbnjd eaf3264c6c ...
2024-04-13 15:03:27 +03:30

18 lines
384 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]
public string Mobile { get; set; }
[Required]
public string FullName { get; set; }
}
}