mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-21 09:11:20 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
12 lines
321 B
C#
Executable file
12 lines
321 B
C#
Executable file
using System.Collections.Generic;
|
|
|
|
namespace FSO.Server.Database.DA.Bookmarks
|
|
{
|
|
public interface IBookmarks
|
|
{
|
|
List<DbBookmark> GetByAvatarId(uint avatar_id);
|
|
List<uint> GetAvatarIgnore(uint avatar_id);
|
|
void Create(DbBookmark bookmark);
|
|
bool Delete(DbBookmark bookmark);
|
|
}
|
|
}
|