10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
|
|
export interface ILicenseRawResponse {
|
||
|
|
id: string;
|
||
|
|
name: string;
|
||
|
|
}
|
||
|
|
export interface ILicenseResponse extends ILicenseRawResponse {}
|
||
|
|
|
||
|
|
export interface ILicenseRequest {
|
||
|
|
name: string;
|
||
|
|
}
|