mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
fix(Currencies): Currencies preferences.
This commit is contained in:
@@ -3,14 +3,17 @@
|
||||
export interface ICurrencyDTO {
|
||||
currencyName: string,
|
||||
currencyCode: string,
|
||||
currencySign: string,
|
||||
};
|
||||
export interface ICurrencyEditDTO {
|
||||
currencyName: string,
|
||||
currencySign: string,
|
||||
}
|
||||
export interface ICurrency {
|
||||
id: number,
|
||||
currencyName: string,
|
||||
currencyCode: string,
|
||||
currencySign: string,
|
||||
createdAt: Date,
|
||||
updatedAt: Date,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user