zgo/src/app/user.model.ts

9 lines
132 B
TypeScript
Raw Normal View History

2021-10-15 19:14:49 +00:00
export interface User {
_id?: string;
2021-10-15 19:14:49 +00:00
address: string;
session: string;
blocktime: number;
2021-11-11 15:18:38 +00:00
pin: string;
validated: boolean;
2021-10-15 19:14:49 +00:00
}