docker files fixes from liaqat
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using Managing.Domain.Trades;
|
||||
using MediatR;
|
||||
using static Managing.Common.Enums;
|
||||
|
||||
namespace Managing.Application.Trading.Commands
|
||||
{
|
||||
public class GetTradesCommand : IRequest<List<Trade>>
|
||||
{
|
||||
public GetTradesCommand(Ticker ticker, string accountName)
|
||||
{
|
||||
Ticker = ticker;
|
||||
AccountName = accountName;
|
||||
}
|
||||
|
||||
public string AccountName { get; }
|
||||
public Ticker Ticker { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user