16 lines
489 B
C#

namespace Marco.Pms.Model.ViewModels.DashBoard
{
public class PerformedActivites
{
public string? BuldingName { get; set; }
public string? FloorName { get; set; }
public string? WorkAreaName { get; set; }
public string? ActivityName { get; set; }
public string? Comment { get; set; }
public double Pending { get; set; }
public double AssignedToday { get; set; }
public double CompletedToday { get; set; }
}
}