summaryrefslogtreecommitdiff
path: root/src/services/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/types.ts')
-rw-r--r--src/services/types.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/services/types.ts b/src/services/types.ts
index e6e01db..6fa5f30 100644
--- a/src/services/types.ts
+++ b/src/services/types.ts
@@ -4,6 +4,12 @@ interface BaseModel {
updatedAt: string;
}
+export interface Account extends BaseModel {
+ name: string;
+ code: string;
+ balance: number;
+}
+
export interface Contractor extends BaseModel {
name: string;
vatId: string;