Y3S1-Cloud_Systems_DevOps/ThAmCo-Stock/ThAmCo.Stock/Data/Price.cs

16 lines
344 B
C#
Raw Normal View History

2020-06-09 20:21:37 +00:00
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; }
}
}