15 lines
300 B
TypeScript
15 lines
300 B
TypeScript
export interface IPartnerRawResponse {
|
|
id: string;
|
|
name: string;
|
|
code: string;
|
|
remained_license: number;
|
|
license_quota: number;
|
|
}
|
|
export interface IPartnerResponse extends IPartnerRawResponse {}
|
|
|
|
export interface IPartnerRequest {
|
|
name: string;
|
|
code: string;
|
|
license_quota: number;
|
|
}
|