29 lines
733 B
C#
29 lines
733 B
C#
namespace Core.Callbacks;
|
|
|
|
public class TraderCallbacks
|
|
{
|
|
public void Load()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public GetBodyResponseData<List<TraderBase>> GetTraderSettings(string url, EmptyRequestData info, string sessionID)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public GetBodyResponseData<TraderBase> GetTrader(string url, EmptyRequestData info, string sessionID)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public GetBodyResponseData<TraderAssort> GetAssort(string url, EmptyRequestData info, string sessionID)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Update()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |