namespace Core.Callbacks; public class ProfileCallbacks { public object OnLoad(string sessionID) { throw new NotImplementedException(); } 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 GetProfileStatus(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData SearchFriend(string url, SearchFriendRequestData info, string sessionID) { throw new NotImplementedException(); } }