Initial Commit

This commit is contained in:
2025-06-10 19:03:43 -04:00
commit 93ab70180a
62 changed files with 49312 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PortfolioManager.Interface
{
public interface IPositionModel
{
String Symbol {get;set;}
DateTime PurchaseDate {get;set;}
DateTime SellDate {get;set;}
double Shares {get;set;}
double PurchasePrice {get;set;}
double CurrentPrice {get;set;} // if sell date is not epoch then this is the sell price
}
}