Skip to content

Commit 56eb02e

Browse files
BUG: Universe > Type > Mass - changed decimal to double
1 parent 0a6e73d commit 56eb02e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

ESI.NET/ESI.NET.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<Company>Sukebe Corporation</Company>
99
<Description>.NET Wrapper for the Eve Online API</Description>
1010
<RepositoryUrl>https://github.com/seraphx2/ESI.NET</RepositoryUrl>
11-
<AssemblyVersion>1.2.0.0</AssemblyVersion>
12-
<FileVersion>1.2.0.0</FileVersion>
11+
<AssemblyVersion>1.2.0.1</AssemblyVersion>
12+
<FileVersion>1.2.0.1</FileVersion>
1313
<RepositoryType>git</RepositoryType>
1414
<PackageLicenseUrl>https://github.com/seraphx2/ESI.NET/blob/master/LICENSE.txt</PackageLicenseUrl>
1515
<PackageProjectUrl>https://github.com/seraphx2/ESI.NET</PackageProjectUrl>

ESI.NET/Models/Universe/Type.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class Type
4242
public int PortionSize { get; set; }
4343

4444
[JsonProperty("mass")]
45-
public decimal Mass { get; set; }
45+
public double Mass { get; set; }
4646

4747
[JsonProperty("graphic_id")]
4848
public int GraphicId { get; set; }

0 commit comments

Comments
 (0)