20 lines
405 B
C#
Executable File
20 lines
405 B
C#
Executable File
|
|
namespace MarketData.Generator.Momentum
|
|
{
|
|
public class CandidateViolation
|
|
{
|
|
public CandidateViolation(String symbol, String reasonCategory)
|
|
{
|
|
Symbol = symbol;
|
|
ReasonCategory = reasonCategory;
|
|
}
|
|
|
|
public String Symbol {get; set;}
|
|
public String ReasonCategory {get; set;}
|
|
}
|
|
|
|
public class CandidateViolations : List<CandidateViolation>
|
|
{
|
|
}
|
|
}
|