This repository has been archived by the owner on Jan 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ScanOrganic events added to IGAU submission
- Loading branch information
Showing
5 changed files
with
91 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
using System; | ||
using Newtonsoft.Json; | ||
|
||
namespace Observatory | ||
{ | ||
public class ScanOrganicEvent | ||
{ | ||
[JsonProperty("timestamp")] | ||
public DateTime Timestamp { get; set; } | ||
|
||
[JsonProperty("event")] | ||
public string Event { get; set; } | ||
|
||
[JsonProperty("ScanType")] | ||
public string ScanType { get; set; } | ||
|
||
[JsonProperty("Genus")] | ||
public string Genus { get; set; } | ||
|
||
[JsonProperty("Genus_Localised")] | ||
public string Genus_Localised { get; set; } | ||
|
||
[JsonProperty("Species")] | ||
public string Species { get; set; } | ||
|
||
[JsonProperty("Species_Localised")] | ||
public string Species_Localised { get; set; } | ||
|
||
[JsonProperty("SystemAddress")] | ||
public ulong SystemAddress { get; set; } | ||
|
||
[JsonProperty("Body")] | ||
public int Body { get; set; } | ||
|
||
public string CurrentSystem; | ||
} | ||
} |