using Core.Models.Eft.Common; using Core.Models.Eft.Dialog; using Core.Models.Eft.HttpResponse; using Core.Models.Eft.Profile; namespace Core.Callbacks; public class DialogCallbacks { public GetBodyResponseData GetFriendList(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> GetChatServerList(string url, GetChatServerListRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> GetMailDialogList(string url, GetMailDialogListRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetMailDialogView(string url, GetMailDialogViewRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetMailDialogInfo(string url, GetMailDialogInfoRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> RemoveDialog(string url, RemoveDialogRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> PinDialog(string url, PinDialogRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> UnpinDialog(string url, PinDialogRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> SetRead(string url, SetDialogReadRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData GetAllAttachments(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> ListOutbox(string url, EmptyRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData> ListInbox(string url, EmptyRequestData info, string sessionID) { } public NullResponseData SendFriendRequest(string url, FriendRequestData info, string sessionID) { throw new NotImplementedException(); } public GetBodyResponseData SendMessage(string url, SendMessageRequest info, string sessionID) { throw new NotImplementedException(); } public bool Update() { throw new NotImplementedException(); } }