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; } } } }