-
Notifications
You must be signed in to change notification settings - Fork 1
/
TargetListWorksheet.cs
47 lines (30 loc) · 1.11 KB
/
TargetListWorksheet.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
using System.Collections.Generic;
namespace RedLeg.Forms
{
public class TargetListWorksheet
{
public int Sheet { get; set; }
public int SheetOf { get; set; }
/// <summary>
/// A maximum of 21 targets can fit per page of the TLWS
/// </summary>
public List<Target> Targets { get; set; } = new List<Target>();
public class Target
{
public string TargetNumber { get; set; }
public string Description { get; set; }
public string Location { get; set; }
public string Altitude { get; set; }
public string Attitude { get; set; }
public string SizeLength { get; set; }
public string SizeWidth { get; set; }
public string SourceOrAccuracy { get; set; }
public string Remarks { get; set; }
public string Group_1 { get; set; }
public string Group_2 { get; set; }
public string Group_3 { get; set; }
public string Group_4 { get; set; }
public string Group_5 { get; set; }
}
}
}