Files
Hushian/Common/Dtos/Company/RegisterCompanyDto.cs
2025-06-28 15:31:07 +03:30

17 lines
338 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Dtos.Company
{
public class RegisterCompanyDto
{
public string Mobile { get; set; }
public string Password { get; set; }
public string FullName { get; set; }
}
}