Y3S1-Cloud_Systems_DevOps/ThAmCo-Stock/ThAmCo.Stock/Data/OrderRequest.cs
2020-06-09 21:21:37 +01:00

18 lines
489 B
C#

using System;
namespace ThAmCo.Stock.Data
{
public class OrderRequest
{
public int Id { get; set; }
public int ProductId { get; set; }
public string Supplier { get; set; }
public int Quantity { get; set; }
public double Price { get; set; }
public DateTime SubmittedTime { get; set; }
public bool Approved { get; set; }
public DateTime? ApprovedTime { get; set; }
public bool Deleted { get; set; }
}
}