mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-13 03:10:31 +00:00
25 lines
405 B
TypeScript
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,
|
|
}; |