namespace Application.Features.Api.MyPage.GetLoginLogs; public sealed record Response( List Items, int TotalCount, int Page, int PageSize ); public sealed record LoginLogItem( int ID, bool Success, string Account, string? Reason, string? IpAddress, string? UserAgent, DateTime CreatedAt );