17 lines
358 B
C#
17 lines
358 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace ScalableRazor
|
||
|
{
|
||
|
public class GitHubRepo
|
||
|
{
|
||
|
[JsonPropertyName("name")]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
[JsonPropertyName("description")]
|
||
|
public string Description { get; set; }
|
||
|
|
||
|
[JsonPropertyName("html_url")]
|
||
|
public string HtmlUrl { get; set; }
|
||
|
}
|
||
|
}
|