using Core.Models.Eft.Common; using Core.Models.Eft.HttpResponse; using Core.Models.Eft.Launcher; using Core.Models.Eft.Profile; namespace Core.Callbacks; public class ProfileCallbacks { public ProfileCallbacks() { } public GetBodyResponseData CreateProfile(string url, ProfileCreateRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetProfileData(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData RegenerateScav(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public NullResponseData ChangeVoice(string url, ProfileChangeVoiceRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData ChangeNickname(string url, ProfileChangeNicknameRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData ValidateNickname(string url, ValidateNicknameRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetReservedNickname(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetOtherProfile(string url, GetOtherProfileRequest info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetProfileSettings(string url, GetProfileSettingsRequest info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData SearchFriend(string url, SearchFriendRequestData info, string sessionID) { throw new NotImplementedException(); } public string GetMiniProfile(string url, GetMiniProfileRequestData info, string sessionID) { throw new NotImplementedException(); } public string GetAllMiniProfiles(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } }