generated from ricardo/MVCLogin
13 lines
387 B
C#
13 lines
387 B
C#
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<SocialMediaStatusViewModel> SocialMediaStatus { get; set; }
|
|
}
|
|
}
|