forked from seraphx2/ESI.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlanet.cs
More file actions
29 lines (22 loc) · 718 Bytes
/
Planet.cs
File metadata and controls
29 lines (22 loc) · 718 Bytes
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
using Newtonsoft.Json;
using System;
namespace ESI.NET.Models.PlanetaryInteraction
{
public class Planet
{
[JsonProperty("last_update")]
public DateTime LastUpdate { get; set; }
[JsonProperty("num_pins")]
public int NumberOfPins { get; set; }
[JsonProperty("owner_id")]
public long OwnerId { get; set; }
[JsonProperty("planet_id")]
public long PlanetId { get; set; }
[JsonProperty("planet_type")]
public string PlanetType { get; set; }
[JsonProperty("solar_system_id")]
public long SolarSystemId { get; set; }
[JsonProperty("upgrade_level")]
public int UpgradeLevel { get; set; }
}
}