2024-05-24 03:44:20 +00:00
|
|
|
|
using SharpChat.Events;
|
|
|
|
|
using System.Collections.Generic;
|
2023-02-10 06:07:59 +00:00
|
|
|
|
|
2024-05-20 23:00:47 +00:00
|
|
|
|
namespace SharpChat.EventStorage {
|
2024-05-24 03:44:20 +00:00
|
|
|
|
public interface IEventStorage : IChatEventHandler {
|
|
|
|
|
ChatEventInfo? GetEvent(long eventId);
|
|
|
|
|
IEnumerable<ChatEventInfo> GetChannelEventLog(string channelName, int amount = 20, int startAt = 0);
|
2023-02-10 06:07:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|