using CPRNIMS.Infrastructure.Entities.PO; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.ViewModel.Common { public class Dashboard { public byte DashboardId { get; set; } public int ForCanvassItem { get; set; } public int WOSupResponseCount { get; set; } public int PRNoCount { get; set; } public int ForApprover1 { get; set; } public int ForApprover2 { get; set; } public int ForPOApproval { get; set; } public int ForPO { get; set; } public int ForPayment { get; set; } public int ForDelivery { get; set; } } }