mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-19 08:21:22 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
15 lines
433 B
C#
Executable file
15 lines
433 B
C#
Executable file
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);
|
|
}
|
|
}
|