7 lines
No EOL
145 B
TypeScript
7 lines
No EOL
145 B
TypeScript
export interface Category {
|
|
guid? : string;
|
|
name? : string;
|
|
color? :string;
|
|
type? : "expense" | "saving"
|
|
allocatedAmount? : number
|
|
} |