Latest sold info implemented

This commit is contained in:
2021-05-14 00:10:55 +02:00
parent f0b3b3d264
commit 27db60bbb2
5 changed files with 110 additions and 6 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataDomain
{
public class LatestSoldStock
{
public decimal SoldStockPrice { get; set; }
public DateTime? LatestSoldDate { get; set; }
}
}