summaryrefslogtreecommitdiff
path: root/gui/src/types/account.ts
blob: 4a3626cd24b3cf53f31eaad0d8cc5515ff7cb63b (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Moment } from "moment";
import Currency from "./currency/currency";

interface Account {
  readonly id: number;
  readonly name: string;
  readonly openingBalance: Currency;
  readonly openingDate: Moment;
}

export default Account;