MVCPostall/Postall/Models/PostListViewModel.cs
2025-01-29 21:25:16 -03:00

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; }
}
}