for example, I have an API endpoint, which returns the following model:
public class DeviceDisplayAPI
{
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
[JsonProperty(PropertyName = "online")]
public bool Online { get; set; }
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
[JsonProperty(PropertyName = "batteryLevel")]
public int BatteryLevel { get; set; }
//....
}
I want to use this API in different project. Have I to create a copy of this model or I can "download" this model automatically like it was with WSDL?