using Microsoft.Data.SqlClient; 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 CustomPO { [Key] public long PRDetailsId { get; set; } public byte POTypeId { get; set; } public string? PONo { get; set; } public long ItemNo { get; set; } public string? ItemSpecs { get; set; } public string? ItemName { get; set; } public decimal Price { get; set; } public string? EmailAddress { get; set; } public string? SupplierName { get; set; } public string? Manufacturer { get; set; } public int Qty { get; set; } public long CanvassDetailId { get; set; } public long CanvassId { get; set; } public long PODetailId { get; set; } public DateTime DateNeeded { get; set; } public string? Message { get; set; } } }