cecon-interfaces
Version:
Interfaces de Projetos Cecon
14 lines (13 loc) • 324 B
TypeScript
import { IEntity } from './i-entity';
export interface IToken extends IEntity {
id: string;
active: boolean;
companyId: string;
containerId: string;
containerName: string;
companyName: string;
createdAt: Date | any;
createdBy: string;
updatedAt: Date | any;
lastAccess: Date | any;
}