Skip to content

Commit 4374f52

Browse files
committed
add missing file, #BUILD
1 parent fd9f4c3 commit 4374f52

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Structs/Metadata/Job.cs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using System.Text.Json.Serialization;
2+
3+
namespace PointCloudConverter.Structs.Metadata
4+
{
5+
public class Job
6+
{
7+
public string ConverterVersion { get; set; }
8+
public ImportSettings ImportSettings { get; set; }
9+
public DateTime StartTime { get; set; }
10+
public DateTime EndTime { get; set; }
11+
public TimeSpan Elapsed { get; internal set; }
12+
}
13+
14+
public class JobMetadata
15+
{
16+
[JsonPropertyOrder(0)]
17+
public Job Job { get; set; }
18+
public List<LasHeader> lasHeaders { get; set; } = new List<LasHeader>();
19+
}
20+
}

0 commit comments

Comments
 (0)