Answers for "attribute c# json object class"

C#
5

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

C# Answers by Framework

Browse Popular Code Answers by Language