21 lines
694 B
C#
21 lines
694 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Purchasing
|
|
{
|
|
public class AlternativeOfferDetails
|
|
{
|
|
[Key]
|
|
public int AlternativeOfferId { get; set; }
|
|
public string? ItemDescription { get; set; }
|
|
public long PRNo { get; set; }
|
|
public long ItemNo { get; set; }
|
|
public string? ItemName { get; set; }
|
|
public string? EmailAddress { get; set; }
|
|
public string? SupplierName { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? RequestedBy { get; set; }
|
|
public string? CanvassBy { get; set; }
|
|
public bool IsApproved { get; set; }
|
|
}
|
|
}
|