mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-19 16:31:21 +00:00
16 lines
433 B
C#
16 lines
433 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace FSO.Server.Database.DA.Inbox
|
|||
|
{
|
|||
|
public interface IInbox
|
|||
|
{
|
|||
|
List<DbInboxMsg> GetMessages(uint avatarID);
|
|||
|
List<DbInboxMsg> GetMessagesAfter(uint avatarID, DateTime after);
|
|||
|
DbInboxMsg Get(int msgID);
|
|||
|
int CreateMessage(DbInboxMsg msg);
|
|||
|
bool DeleteMessage(int msgID, uint avatarID);
|
|||
|
bool DeleteMessage(int msgID);
|
|||
|
}
|
|||
|
}
|