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,14 @@
|
||||
namespace ROLAC.API.DTOs.Users;
|
||||
|
||||
public class UserListItemDto
|
||||
{
|
||||
public string Id { get; set; } = "";
|
||||
public string Email { get; set; } = "";
|
||||
public int? MemberId { get; set; }
|
||||
public string? MemberDisplayName { get; set; }
|
||||
public List<string> Roles { get; set; } = [];
|
||||
public bool IsActive { get; set; }
|
||||
public string LanguagePreference { get; set; } = "en";
|
||||
public DateTime? LastLoginAt { get; set; }
|
||||
public DateTime CreatedAt { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user