9 lines
133 B
TypeScript
9 lines
133 B
TypeScript
|
|
export type Resources = {
|
||
|
|
id: number
|
||
|
|
resource_no: string
|
||
|
|
active: string
|
||
|
|
type: string
|
||
|
|
created_at: Date
|
||
|
|
updated_at: Date
|
||
|
|
}
|