14 lines
400 B
C#
14 lines
400 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 double AssignedToday { get; set; }
|
|
public double CompletedToday { get; set; }
|
|
|
|
}
|
|
}
|