vibe-models
Version:
EuroMonitor EMI vibe models
15 lines (14 loc) • 365 B
TypeScript
import { Image } from './image.model';
import { Profile } from './profile.model';
export interface User {
id?: string;
firstName: string;
lastName: string;
email: string;
username: string;
images?: Image[];
profile?: Profile;
readonly profileId?: string;
readonly createdAt?: Date;
readonly updatedAt?: Date;
}