14 lines
366 B
C#
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; } }
|
|
}
|
|
}
|