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

16 lines
344 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace ThAmCo.Stock.Data
{
public class Price
{
public int Id { get; set; }
public int ProductStockId { get; set; }
public double ProductPrice { get; set; }
public DateTime Date { get; set; }
}
}