9 lines
138 B
TypeScript
9 lines
138 B
TypeScript
export interface AuthUser {
|
|
id: string;
|
|
username: string;
|
|
email: string;
|
|
roles: [string];
|
|
created: Date;
|
|
lastUpdated: Date;
|
|
}
|