using Core.Models.Eft.Common; using Core.Models.Eft.Common.Tables; using Core.Models.Eft.Customization; using Core.Models.Eft.Hideout; using Core.Models.Eft.HttpResponse; using Core.Models.Eft.ItemEvent; namespace Core.Callbacks; public class CustomizationCallbacks { public CustomizationCallbacks() { } /// /// Handle client/trading/customization/storage /// /// /// /// /// public GetBodyResponseData GetSuits(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/trading/customization /// /// /// /// /// public GetBodyResponseData> GetTraderSuits(string url, object info, string sessionID) { throw new NotImplementedException(); } /// /// Handle CustomizationBuy event /// /// /// /// /// public ItemEventRouterResponse BuyClothing(PmcData pmcData, BuyClothingRequestData body, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/hideout/customization/offer/list /// /// /// /// /// public GetBodyResponseData GetHideoutCustomisation(PmcData pmcData, EmptyRequestData body, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/customization/storage /// /// /// /// /// public GetBodyResponseData> GetStorage(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle CustomizationSet /// /// /// /// /// public ItemEventRouterResponse SetClothing(PmcData pmcData, CustomizationSetRequest info, string sessionID) { throw new NotImplementedException(); } }