mirror of https://github.com/ghostfolio/ghostfolio
4 changed files with 21 additions and 19 deletions
@ -0,0 +1,13 @@ |
|||
import { Role } from '@prisma/client'; |
|||
|
|||
export interface AdminUser { |
|||
accountCount: number; |
|||
activityCount: number; |
|||
country: string; |
|||
createdAt: Date; |
|||
dailyApiRequests: number; |
|||
engagement: number; |
|||
id: string; |
|||
lastActivity: Date; |
|||
role: Role; |
|||
} |
|||
@ -0,0 +1,3 @@ |
|||
import { AdminUser } from '../admin-user.interface'; |
|||
|
|||
export interface AdminUserResponse extends AdminUser {} |
|||
Loading…
Reference in new issue