import { BaseModel } from './base'; export interface MailConfig extends BaseModel { Name: string; Host: string; InboundPort: number; OutboundPort: number; Username: string; Password: string; IsEnable: boolean; EnableSsl: boolean; IsDefault: boolean; }