Files
moadiran/Shared/DTOs/CompanyRegistrationDTO.cs
mmrbnjd 3f0a37a08b ...
2024-04-17 15:49:34 +03:30

14 lines
366 B
C#

using System.ComponentModel.DataAnnotations;
namespace Shared.DTOs
{
public class CompanyRegistrationDTO
{
[MinLength(5)]
public string CompanyName { get; set; }
public string FullnameUser { get { return CompanyName; } }
public string Mobile { get; set; }
public string Username { get { return Mobile; } }
}
}