feat: rename voucher to license.

This commit is contained in:
Ahmed Bouhuolia
2020-09-05 22:58:36 +02:00
parent 750377ba86
commit df0cf287ff
24 changed files with 347 additions and 361 deletions

View File

@@ -0,0 +1,17 @@
export interface ILicense {
id?: number,
licenseCode: string,
licensePeriod: number,
sent: boolean,
disabled: boolean,
used: boolean,
};
export interface ILicensesFilter {
active: boolean,
disabld: boolean,
used: boolean,
sent: boolean,
};