Files
bigcapital/server/src/interfaces/License.ts
a.bouhuolia dbb4e4de47 fix(biling): Subscription billing system.
fix(GeneralLedger): running balance.
2021-03-13 15:36:03 +02:00

25 lines
405 B
TypeScript

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,
};
export interface ISendLicenseDTO {
phoneNumber: string,
email: string,
period: string,
periodInterval: string,
planSlug: string,
};