scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
15 lines (14 loc) • 337 B
TypeScript
import { EGlobalSettingsType } from '../enums/global-settings-type.enum';
export interface IEmailSettings {
active: boolean;
createdAt: Date;
email: string;
id: string;
masterKey: string;
pass: string;
service: string;
type: EGlobalSettingsType;
updatedAt: Date;
host: string;
port: number;
}