blob: 2b74d0e6978ffdaf602ed2e6dd01d5d15277d592 (
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
}
|