mysimulation/server/FSO.Server.Protocol/Voltron/DataService/Bookmark.cs

14 lines
276 B
C#
Raw Permalink Normal View History

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