-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEveAgentBookmark.cs
28 lines (25 loc) · 956 Bytes
/
EveAgentBookmark.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EveModel
{
public class EveAgentBookmark : EveBookmark
{
public EveAgentBookmark(IntPtr ptr) : base(ptr)
{
SolarSystemId = this["solarsystemID"].GetValueAs<long>();
AgentId = this["agentID"].GetValueAs<int>();
IsDeadspace = this["deadspace"].GetValueAs<bool>();
Flag = this["flag"].GetValueAs<int>();
LocationNumber = this["locationNumber"].GetValueAs<int>();
LocationType = this["locationType"].GetValueAs<string>();
}
public long SolarSystemId { get; private set; }
public int AgentId { get; private set; }
public bool IsDeadspace { get; private set; }
public int Flag { get; private set; }
public int LocationNumber { get; private set; }
public string LocationType { get; private set; }
}
}