using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace DSWeb.Areas.Mobile.Models.Common { public class PageContentModel { public string header { get; set; } public string content { get; set; } public string footer { get; set; } } }