9 lines
193 B
C#
9 lines
193 B
C#
namespace KArtSell.Modules.SignalEngine.Domain;
|
|
|
|
public interface ISellPolicy
|
|
{
|
|
int Priority { get; }
|
|
string PolicyId { get; }
|
|
SellPolicyResult Evaluate(SellDecisionInput input);
|
|
}
|