interface Currency {
    _id?: string;
    code: string;
    createdDate?: Date;
    exchangeRate: number;
    id?: string;
    modifiedDate?: Date;
    name: string;
}

Hierarchy (View Summary)

Properties

_id?: string
code: string
createdDate?: Date
exchangeRate: number
id?: string

Use _id instead

modifiedDate?: Date
name: string