mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
add server to monorepo.
This commit is contained in:
25
packages/server/src/interfaces/License.ts
Normal file
25
packages/server/src/interfaces/License.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
|
||||
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,
|
||||
};
|
||||
Reference in New Issue
Block a user