12 lines
187 B
TypeScript
12 lines
187 B
TypeScript
export interface UserEntity {
|
|
id: number;
|
|
username: string;
|
|
password: string;
|
|
admin?: boolean;
|
|
}
|
|
|
|
export interface newUser {
|
|
username: string;
|
|
password: string;
|
|
}
|