loginLog.ts 141 B

12345678
  1. // 로그인 기록
  2. export interface LoginLog {
  3. id: number;
  4. success: boolean;
  5. ipAddress: string;
  6. userAgent: string;
  7. createdAt: string;
  8. }