Website/db/app/core/dto/ItemData.ts

6 lines
103 B
TypeScript
Raw Normal View History

2021-12-18 22:34:07 -05:00
export interface ItemData {
_id: string
_name: string
_parent?: string
_type?: string
}