using Core.Models.Eft.Common; using Core.Models.Eft.Common.Tables; using Core.Models.Eft.HttpResponse; namespace Core.Callbacks; public class PrestigeCallbacks { public PrestigeCallbacks() { } /// /// Handle client/prestige/list /// /// /// /// /// /// public GetBodyResponseData GetPrestige(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } /// /// Handle client/prestige/obtain /// /// /// /// /// /// public GetBodyResponseData ObtainPrestige(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } }