2023-06-29 15:20:07 +02:00

13 lines
293 B
TypeScript

import Resource from "../Resource";
export default class User extends Resource {
uid?: string;
contact?: {
first_name: string;
last_name: string;
email: string;
cell_phone_number: string;
phone_number: string;
civility: string;
};
}