New table StockGroups added

This commit is contained in:
2022-02-01 17:26:05 +01:00
parent dd0f9dde71
commit 5e42d91c1e
8 changed files with 252 additions and 0 deletions

10
DataDomain/ShareModel.cs Normal file
View File

@ -0,0 +1,10 @@
namespace DataDomain
{
public class ShareModel
{
public int Id { get; set; }
public string GroupName { get; set; }
public string StockName { get; set; }
}
}