mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 18:02:23 +00:00
10 lines
217 B
C#
10 lines
217 B
C#
|
namespace FSO.Server.Database.DA.Bookmarks
|
|||
|
{
|
|||
|
public class DbBookmark
|
|||
|
{
|
|||
|
public uint avatar_id { get; set; }
|
|||
|
public byte type { get; set; }
|
|||
|
public uint target_id { get; set; }
|
|||
|
}
|
|||
|
}
|