20 lines
333 B
C#
Executable File
20 lines
333 B
C#
Executable File
using System;
|
|
|
|
namespace MarketData.Generator.Interface
|
|
{
|
|
public interface IPurePosition
|
|
{
|
|
String Symbol {get; set;}
|
|
|
|
DateTime PurchaseDate {get; set;}
|
|
|
|
DateTime SellDate {get; set;}
|
|
|
|
double CurrentPrice {get; set;}
|
|
|
|
double PurchasePrice {get; set;}
|
|
|
|
double Shares {get; set;}
|
|
}
|
|
}
|