We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 86f83d7 + cd9a18b commit cc36e6dCopy full SHA for cc36e6d
1 file changed
SteamWebAPI2/Models/DOTA2/HeroResultContainer.cs
@@ -1,11 +1,15 @@
1
-using System.Collections.Generic;
+using Newtonsoft.Json;
2
+using System.Collections.Generic;
3
4
namespace SteamWebAPI2.Models.DOTA2
5
{
6
public class Hero
7
8
public string Name { get; set; }
9
public int Id { get; set; }
10
+
11
+ [JsonProperty(PropertyName = "localized_name")]
12
+ public string LocalizedName { get; set; }
13
}
14
15
public class HeroResult
0 commit comments