mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 15:27:03 -04:00
31 lines
657 B
C#
31 lines
657 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace WowUp.Common.Models.GitHub
|
|
{
|
|
public class GitHubRepository
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
[JsonProperty("node_id")]
|
|
public string NodeId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("full_name")]
|
|
public string FullName { get; set; }
|
|
|
|
public bool Private { get; set; }
|
|
|
|
public GitHubUploader Owner { get; set; }
|
|
|
|
[JsonProperty("html_url")]
|
|
public string HtmlUrl { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public bool Fork { get; set; }
|
|
|
|
public string Url { get; set; }
|
|
}
|
|
}
|