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

10 lines
190 B
TypeScript
Raw Normal View History

2026-03-10 13:36:45 +03:30
export interface ILicenseRawResponse {
id: string;
name: string;
}
export interface ILicenseResponse extends ILicenseRawResponse {}
export interface ILicenseRequest {
name: string;
}