Initial LisgloSIPS V2 implementation
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
export const MONEY_SCALE = 6;
|
||||
|
||||
export type EntityStatus = 'enabled' | 'disabled';
|
||||
|
||||
export interface AuditedEntity {
|
||||
id: string;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
createdBy: string | null;
|
||||
updatedBy: string | null;
|
||||
version: number;
|
||||
}
|
||||
Reference in New Issue
Block a user