12 lines
181 B
TypeScript
12 lines
181 B
TypeScript
declare namespace MasterModel {
|
|
interface LoginRequestBody {
|
|
guid: string;
|
|
email: string;
|
|
password: string;
|
|
}
|
|
|
|
interface LoginResponse {
|
|
token?: string;
|
|
}
|
|
}
|