mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
17 lines
262 B
TypeScript
17 lines
262 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,
|
|
}; |