using System; using System.Collections.Generic; namespace FSO.Server.Database.DA.Inbox { public interface IInbox { List GetMessages(uint avatarID); List GetMessagesAfter(uint avatarID, DateTime after); DbInboxMsg Get(int msgID); int CreateMessage(DbInboxMsg msg); bool DeleteMessage(int msgID, uint avatarID); bool DeleteMessage(int msgID); } }