frontend/src/businesslogic/models/user.ts

6 lines
76 B
TypeScript
Raw Normal View History

2020-06-17 15:19:51 +02:00
export type User = {
name?: string;
surname?: string;
ticket: string;
};