18 lines
680 B
C#
18 lines
680 B
C#
namespace ROLAC.API.DTOs.Members;
|
|
|
|
public class MemberListItemDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string FirstName_en { get; set; } = "";
|
|
public string LastName_en { get; set; } = "";
|
|
public string? NickName { get; set; }
|
|
public string? FirstName_zh { get; set; }
|
|
public string? LastName_zh { get; set; }
|
|
public string? Entity { get; set; }
|
|
public string Status { get; set; } = "";
|
|
public string? Email { get; set; }
|
|
public string? PhoneCell { get; set; }
|
|
public DateOnly? JoinDate { get; set; }
|
|
public string? LinkedUserId { get; set; } // null = no user account
|
|
}
|