ezet / evelib

Eve Online Library.NET is an open source C# wrapper for CCPs Eve Online API and other popular Eve Online APIs.
Apache License 2.0
71 stars 36 forks source link

MarketId should be long instead of int #53

Closed ezet closed 8 years ago

ezet commented 8 years ago

/// Gets or sets the order identifier. /// /// The identifier. [DataMember(Name = "id")] public new long Id { get; set; }

added this to the "EveLib.EveCrest\Models\Resources\Market\MarketOrder.cs" file. Without this he tries to get using a 'normal' int and doesnt work.

ezet commented 8 years ago

Fixed.