97743f6974
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
633 B
C#
17 lines
633 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 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
|
|
}
|