blob: 371c38eb32f93b0869be0ffc82e3b0254f3aa71e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type { UserRole } from "./UserRole"
export type User = {
/**
* Guid id for user
*/
id: string,
firstName: string,
lastName: string,
role: UserRole,
username: string,
email: string
}
|