24 lines
682 B
C#
24 lines
682 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Canvass
|
|
{
|
|
[Table("RFQ")]
|
|
public class RFQ
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Token { get; set; }
|
|
public decimal Qty { get; set; }
|
|
public decimal Price { get; set; }
|
|
public string? Remarks { get; set; }
|
|
public string? EmailAddress { get; set; }
|
|
public string? Manufacturer { get; set; }
|
|
public DateTime CommitmentDate { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|