feat: add PagedResult, Member DTOs, and User DTOs
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user