using Core.Models.Eft.Common; using Core.Models.Eft.Common.Tables; using Core.Models.Eft.Game; using Core.Models.Eft.Hideout; using Core.Models.Eft.HttpResponse; using Core.Models.Spt.Server; namespace Core.Callbacks; public class DataCallbacks { public DataCallbacks() { } public GetBodyResponseData GetSettings(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetGlobals(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public string GetTemplateItems(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetTemplateHandbook(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> GetTemplateSuits(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> GetTemplateCharacter(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetHideoutSettings(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> GetHideoutAreas(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetHideoutProduction(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> GetLocalesLanguages(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetLocalesMenu(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public string GetLocalesGlobal(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public string GetQteList(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetItemPrices(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } }