diff --git a/Program.cs b/Program.cs index 59917ad..5e4a29b 100644 --- a/Program.cs +++ b/Program.cs @@ -309,6 +309,7 @@ namespace dotnetthanks_loader { Name = author.name, Link = author.html_url, + Avatar = author.avatar_url, Count = 1 }; person.Repos.Add(new RepoItem() { Name = repoName, Count = 1 }); diff --git a/Release.cs b/Release.cs index 6ccab9c..d21850e 100644 --- a/Release.cs +++ b/Release.cs @@ -74,6 +74,7 @@ namespace dotnetthanks { public string Name { get; set; } public string Link { get; set; } + public string Avatar { get; set; } public int Count { get; set; } public List Repos { get; set; } = new List();