frontend/src/businesslogic/types/user.ts

6 lines
86 B
TypeScript
Raw Normal View History

2020-07-24 17:00:06 +02:00
export interface User {
2020-06-17 15:19:51 +02:00
name?: string;
surname?: string;
2020-06-20 11:27:19 +02:00
ticket: string | null;
2020-06-17 15:19:51 +02:00
};