10 lines
159 B
TypeScript
10 lines
159 B
TypeScript
declare namespace Model {
|
|
interface LoginRequestBody {
|
|
username: string;
|
|
password: string;
|
|
}
|
|
interface LoginResponse {
|
|
token?: string;
|
|
}
|
|
}
|