using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Entities.PO { public class PRPOSummaryCount { [Key] public string? Department { get; set; } public int PRItemCount { get; set; } public int POItemCount { get; set; } public int RRItemCount { get; set; } public int WOPOItemCount { get; set; } public string? POCompletionPercent { get; set; } public string? RRCompletionPercent { get; set; } } }