24 lines
698 B
C#
24 lines
698 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Canvass
|
|
{
|
|
public class RFQReference
|
|
{
|
|
[Key]
|
|
public long CanvassSupplierId { get; set; }
|
|
public long CanvassId { get; set; }
|
|
public string? AggrePRNo { get; set; }
|
|
public int SupplierId { get; set; }
|
|
public string? Token { get; set; }
|
|
public string? SupplierName { get; set; }
|
|
public string? EmailAddress { get; set; }
|
|
public DateTime CreatedDate { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|