cecon-interfaces
Version:
Interfaces de Projetos Cecon
11 lines (10 loc) • 317 B
TypeScript
import { EDocType } from "../../../general";
import { IUser } from "../../../users";
import { IPayioUserSession } from "./i-user-sessions";
export interface IPayioUser extends IUser {
code: string | null;
doc?: string;
docType?: EDocType;
password: string | null;
sessions: IPayioUserSession[];
}