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