flat_name becomes methodname_flat

This commit is contained in:
Garry Newman 2020-02-19 09:01:24 +00:00
parent 9fddcc8be9
commit 6431c546fd

View File

@ -31,7 +31,7 @@ public class Param
public Param[] Params { get; set; }
[JsonProperty( PropertyName = "methodname" )]
public string Name { get; set; }
[JsonProperty( PropertyName = "flat_name" )]
[JsonProperty( PropertyName = "methodname_flat" )]
public string FlatName { get; set; }
}