using SharpChat.Channels; using SharpChat.Events; using System; using System.Collections.Generic; namespace SharpChat.Messages.Storage { public interface IMessageStorage : IEventHandler { void GetMessage(long messageId, Action callback); void GetMessages(IChannel channel, Action> callback, int amount, int offset); } }