mysimulation/server/FSO.Server.Database/DA/Inbox/IInbox.cs
Tony Bark 22191ce648 Removed NioTSO client and server
- NioTSO client isn't needed because we're using RayLib
- Added FreeSO's API server to handle most backend operations
2024-05-01 02:55:43 -04:00

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);
}
}