Skip to content

Commit bcf4dc9

Browse files
Merge branch 'develop'
2 parents 34ad169 + 5a0a48b commit bcf4dc9

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

ESI.NET/ESI.NET.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PropertyGroup>
1111
<TargetFrameworks>netcoreapp3.1;netstandard2.0;net461;net462;net47;net471;net5.0</TargetFrameworks>
1212
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
13-
<Version>2021.11.19</Version>
13+
<Version>2021.12.12</Version>
1414
<Authors>Psianna Archeia</Authors>
1515
<Company>Sukebe Corporation</Company>
1616
<Description>.NET Wrapper for the Eve Online API</Description>

ESI.NET/EsiRequest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
using Newtonsoft.Json;
22
using System;
33
using System.Collections.Generic;
4-
using System.Collections.Immutable;
54
using System.Net.Http;
65
using System.Net.Http.Headers;
76
using System.Text;

ESI.NET/Models/Incursions/Incursion.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using Newtonsoft.Json;
2-
using System.Collections.Generic;
32

43
namespace ESI.NET.Models.Incursions
54
{
@@ -20,6 +19,9 @@ public class Incursion
2019
[JsonProperty("influence")]
2120
public double Influence { get; set; }
2221

22+
[JsonProperty("staging_solar_system_id")]
23+
public long StagingSystemId { get; set; }
24+
2325
[JsonProperty("state")]
2426
public string State { get; set; }
2527

0 commit comments

Comments
 (0)