10 lines
268 B
C#

namespace EnotaryoPH.Web.Pages.Principal.Dashboard
{
public class DashboardItem
{
public DateTime Date { get; set; }
public string Link { get; set; }
public string Status { get; set; }
public string Type { get; set; }
}
}