.Net wrapper for services hosted on https://api.systemexit.co.uk/ & https://kitsu.systemexit.co.uk/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SysEx.Net/SysEx.Net/Models/Animal.cs

10 lines
155 B

using Newtonsoft.Json;
namespace SysEx.Net
{
public class Animal
{
[JsonProperty(PropertyName = "file")]
public string URL { get; set; }
}
}