Answers for ".net json alias for properties and class object"

C#
6

json property C#

public class Videogame
{
    [JsonProperty("name")]
    public string Name { get; set; }

    [JsonProperty("release_date")]
    public DateTime ReleaseDate { get; set; }
}
Posted by: Guest on November-13-2020

Code answers related to ".net json alias for properties and class object"

C# Answers by Framework

Browse Popular Code Answers by Language