asked on
public class GeneralSetupCompanyParameters
{
public class SMTPSettings
{
public string CommonSMTPSettings { get; set; }
public string SMTPServer { get; set; }
public int SMTPPort { get; set; }
}
public string CountryName { get; set; }
public string ServiceYear { get; set; }
public string QuickNote { get; set; }
public bool AllowFutureSaleDates { get; set; }
public bool ForcePWComplexity { get; set; }
public bool AppointmentNotification { get; set; }
public bool LimitPastSaleDates { get; set; }
public int LimitPastSaleDatesDay { get; set; }
public bool ForcePeriodicPWChanges { get; set; }
public bool LockCallLogEntries { get; set; }
public string EveryDay { get; set; }
public bool LimitPastCancelDates { get; set; }
public string LimitPasCancelDatesDays { get; set; }
public bool CallLogOutcome { get; set; }
}
}