7 lines
81 B
TypeScript
7 lines
81 B
TypeScript
export interface User {
|
|
id: number;
|
|
username: string;
|
|
password: string;
|
|
}
|
|
|