Files
psp_panel/src/app/domains/superAdmin/modules/licenses/models/io.d.ts
T

10 lines
190 B
TypeScript

export interface ILicenseRawResponse {
id: string;
name: string;
}
export interface ILicenseResponse extends ILicenseRawResponse {}
export interface ILicenseRequest {
name: string;
}