fix: 修复命名错误

This commit is contained in:
橙子
2024-06-09 00:41:52 +08:00
parent 40a89c9374
commit 198ce36fea

View File

@@ -32,7 +32,7 @@ namespace Yi.Abp.Tool.Domain
HtmlWeb web = new HtmlWeb();
this.HtmlDoc = web.Load(NugetVersionUrl);
nugetResult.Versions = GetVersionList();
nugetResult.DownloadNumberNumber = GetDownloadNumber();
nugetResult.DownloadNumber = GetDownloadNumber();
return nugetResult;
}
@@ -79,7 +79,7 @@ namespace Yi.Abp.Tool.Domain
public class NugetResult
{
public long DownloadNumberNumber { get; set; }
public long DownloadNumber { get; set; }
public List<string> Versions { get; set; }
}
}