15 lines
No EOL
279 B
TypeScript
15 lines
No EOL
279 B
TypeScript
export interface Category {
|
|
guid? : string;
|
|
name? : string;
|
|
color? :string;
|
|
type? : "expense" | "saving"
|
|
allocatedAmount? : number
|
|
}
|
|
|
|
export interface Expense {
|
|
guid? : string;
|
|
name? : string;
|
|
dateTime? : string;
|
|
amount?: number;
|
|
category_guid?: string;
|
|
} |