Per the title, I wonder if we should just ignore some of the properties returned by the API. They seem to be generated by the data returned from the real Warframe API, and some of it really isn't needed as we can make it ourselves in the wrapper. This would reduce the clutter inside model classes like this:
[JsonProperty("eta")]
public string TimeRemainingString { get; private set; }
[JsonProperty("startString")]
public string TimeSinceStartString { get; private set; }
Thoughts?