namespace Postall.Models { public class PostListViewModel { public int Id { get; set; } public string Channel { get; set; } public string Title { get; set; } public DateTime? NextScheduledDate { get; set; } public DateTime LastUpdate { get; set; } public List SocialMediaStatus { get; set; } } }