-
Notifications
You must be signed in to change notification settings - Fork 14
/
DirectionalScannerResult.cs
80 lines (71 loc) · 2.07 KB
/
DirectionalScannerResult.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using System;
using EVE.ISXEVE.Extensions;
using LavishScriptAPI;
namespace EVE.ISXEVE
{
/// <summary>
/// Wrapper for the DirectionalScannerresult datatype.
/// DirectionalScannerresult is not a typo.
/// </summary>
public class DirectionalScannerResult : LavishScriptObject
{
public DirectionalScannerResult(LavishScriptObject Copy) : base(Copy)
{
}
private Int64? _id;
/// <summary>
/// Wrapper for the ID member of the DirectionalScannerresult datatype.
/// </summary>
public Int64 ID
{
get
{
if (_id == null)
_id = this.GetInt64("ID");
return _id.Value;
}
}
private string _name;
/// <summary>
/// Wrapper for the Name member of the DirectionalScannerresult datatype.
/// </summary>
public string Name
{
get { return _name ?? (_name = this.GetString("Name")); }
}
private int? _groupId;
/// <summary>
/// Wrapper for the GroupID member of the DirectionalScannerresult datatype.
/// </summary>
public int GroupID
{
get
{
if (_groupId == null)
_groupId = this.GetInt("GroupID");
return _groupId.Value;
}
}
private int? _typeId;
/// <summary>
/// Wrapper for the TypeID member of the DirectionalScannerresult datatype.
/// </summary>
public int TypeID
{
get
{
if (_typeId == null)
_typeId = this.GetInt("TypeID");
return _typeId.Value;
}
}
private Entity _toEntity;
/// <summary>
/// Wrapper for the ToEntity member of the DirectionalScannerresult datatype.
/// </summary>
public Entity ToEntity
{
get { return _toEntity ?? (_toEntity = new Entity(GetMember("ToEntity"))); }
}
}
}