loginLogs.ts 223 B

1234567891011
  1. // 로그인 기록
  2. export interface LoginLogsResponse {
  3. total: number
  4. list: {
  5. id: number;
  6. success: boolean;
  7. ipAddress: string;
  8. userAgent: string;
  9. createdAt: string;
  10. }[]
  11. }