mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 01:12:24 +00:00
14 lines
276 B
C#
14 lines
276 B
C#
|
namespace FSO.Server.Protocol.Voltron.DataService
|
|||
|
{
|
|||
|
public class Bookmark
|
|||
|
{
|
|||
|
public uint Bookmark_TargetID { get; set; }
|
|||
|
public BookmarkType Bookmark_Type { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public enum BookmarkType : byte
|
|||
|
{
|
|||
|
BOOKMARK = 0x01
|
|||
|
}
|
|||
|
}
|