Files
SPT-Server-Build/Core/Callbacks/TraderCallbacks.cs
T
2025-01-06 19:05:31 +00:00

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();
}
}