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.
Ombi/src/Ombi.Api.Github/Models/CakeThemes.cs

24 lines
661 B

namespace Ombi.Api.Github.Models
{
public class CakeThemes
{
public string name { get; set; }
public string path { get; set; }
public string sha { get; set; }
public int size { get; set; }
public string url { get; set; }
public string html_url { get; set; }
public string git_url { get; set; }
public string download_url { get; set; }
public string type { get; set; }
public _Links _links { get; set; }
}
public class _Links
{
public string self { get; set; }
public string git { get; set; }
public string html { get; set; }
}
}