using CZFW.Framework.Model.Entity; using CZFW.Framework.Model.ViewModel; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace CZKJ.GBRS2.WebMVC.Models { public class FooterModel { /// /// 咨询电话 /// public string Phone { get; set; } /// /// 邮编 /// public string ZipCode { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 微信二维码 /// public string WeChatCode { get; set; } /// /// 微博二维码 /// public string MicroBlog { get; set; } /// /// 关于我们导航 /// public NavigationModel NavigationModel { get; set; } /// /// 帮助中心导航 /// public NavigationModel NavigationHModel { get; set; } /// /// 友情链接 /// public IList LinkList { get; set; } /// /// 备案 /// public string Record { get; set; } } }