mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-13 19:30:30 +00:00
19 lines
354 B
TypeScript
19 lines
354 B
TypeScript
export interface ICommonEntry {
|
|
id?: number;
|
|
amount: number;
|
|
}
|
|
|
|
export interface ICommonLandedCostEntry extends ICommonEntry {
|
|
landedCost: boolean;
|
|
allocatedCostAmount: number;
|
|
}
|
|
|
|
export interface ICommonEntryDTO {
|
|
id?: number;
|
|
amount: number;
|
|
}
|
|
|
|
export interface ICommonLandedCostEntryDTO extends ICommonEntryDTO {
|
|
landedCost?: boolean;
|
|
}
|