18 lines
399 B
C#
18 lines
399 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Common.Dtos
|
|
{
|
|
public class Read_UserDto
|
|
{
|
|
// CompanyUser OR Exper OR User
|
|
public int ID { get; set; }
|
|
public string? FullName { get; set; }
|
|
public string? UserName { get; set; }
|
|
public string? Mobile { get; set; }
|
|
}
|
|
}
|