cannoli-interfaces
Version:
Interfaces de Projetos Cannoli
17 lines (16 loc) • 360 B
TypeScript
export interface IMemberAccess {
accessCount: number | null;
active: boolean;
companyId: string;
companyName: string;
containerId: string | null;
createdAt: Date;
id: string;
imageUrl: string | null;
lastAccessAt: Date | null;
name: string;
roles: any[];
tags: string[];
updated: Date;
userId: string;
}