Files
psp_panel/src/app/domains/consumer/modules/accounts/models/io.d.ts
T

14 lines
256 B
TypeScript
Raw Normal View History

2026-03-16 17:56:22 +03:30
export interface IAccountRawResponse {
id: string;
name: string;
}
export interface IAccountResponse extends IAccountRawResponse {}
export interface IAccountRequest {
name: string;
}
export interface IAccountPasswordRequest {
password: string;
}