using Core.DI; using Core.Models.Eft.Common; using Core.Models.Eft.Common.Tables; using Core.Models.Eft.HttpResponse; using Core.Models.Spt.Config; namespace Core.Callbacks; public class TraderCallbacks : OnLoad, OnUpdate { public TraderCallbacks() { } public async Task OnLoad() { throw new NotImplementedException(); } public async Task OnUpdate(long _) { throw new NotImplementedException(); } public string GetRoute() { throw new NotImplementedException(); } public GetBodyResponseData> GetTraderSettings(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetTrader(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetAssort(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetModdedTraderData(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } }