22 lines
573 B
C#
22 lines
573 B
C#
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.Purchasing
|
|
{
|
|
[Table("Approved")]
|
|
public class Approved
|
|
{
|
|
[Key]
|
|
public long ApprovedId { get; set; }
|
|
public long PRDetailsId { get; set; }
|
|
public string? ApprovedBy { get; set; }
|
|
public byte ApproverId { get; set; }
|
|
public long PRNo { get; set; }
|
|
}
|
|
}
|