zgo/src/app/owner.model.ts

6 lines
75 B
TypeScript
Raw Normal View History

2021-10-20 20:51:14 +00:00
export interface Owner {
2021-10-21 16:22:48 +00:00
_id?: string;
2021-10-20 20:51:14 +00:00
address: string;
name: string;
}