added total to UserCollection

This commit is contained in:
2023-05-04 16:49:32 +10:00
parent e6dd75c2a8
commit f0b55b7b2e

View File

@@ -106,6 +106,7 @@ export interface UserResponse {
export interface UserCollection { export interface UserCollection {
users: Array<User>; users: Array<User>;
total: number;
} }
export interface LoginResponse { export interface LoginResponse {