AspNetCore.Docs.Samples/tutorials/scalable-razor-apps/start/GitHubRepo.cs

17 lines
358 B
C#
Raw Normal View History

2022-09-16 02:59:26 +08:00
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; }
}
}