using Bootstrap.DataAccess; namespace Bootstrap.Admin.Models { /// /// /// public class ModelBase { /// /// /// public ModelBase() { Title = DictHelper.RetrieveWebTitle(); Footer = DictHelper.RetrieveWebFooter(); Theme = DictHelper.RetrieveActiveTheme(); } /// /// /// public string Title { get; private set; } /// /// /// public string Footer { get; private set; } /// /// /// public string Theme { get; protected set; } } }