status.ts 510 Bytes
Newer Older
janithgamage1.ed's avatar
janithgamage1.ed committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
export interface StatusType {
    id: number
    code: string
    description: string
}

// ==============================|| DATA - Status ||============================== //

const status: readonly StatusType[] = [ 
    { id: 1, code: "Active", description: "Active" },
    { id: 2, code: "New", description: "New" },
    { id: 3, code: "Pending", description: "Pending" },
    { id: 4, code: "Hold", description: "Hold" },
    { id: 5, code: "Rejected", description: "Rejected" },
];

export default status;