using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Entities.PO { [Table("CentralPONo")] public class CentralPONo { [Key] public int CPONoId { get; set; } public string? PONo { get; set; } public byte POTypeId { get; set; } public byte AppsId { get; set; } public string? CreatedBy { get; set; } public DateTime CreatedDate { get; set; } public bool IsActive { get; set; } } }