14 lines
256 B
TypeScript
14 lines
256 B
TypeScript
|
|
export interface IAccountRawResponse {
|
||
|
|
id: string;
|
||
|
|
name: string;
|
||
|
|
}
|
||
|
|
export interface IAccountResponse extends IAccountRawResponse {}
|
||
|
|
|
||
|
|
export interface IAccountRequest {
|
||
|
|
name: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface IAccountPasswordRequest {
|
||
|
|
password: string;
|
||
|
|
}
|