Answers for "json ignore property c#"

C#
2

json ignore property c#

public class Account
{
    public string FullName { get; set; }
    public string EmailAddress { get; set; }

    [JsonIgnore]
    public string PasswordHash { get; set; }
}
Posted by: Guest on March-30-2020

Code answers related to "json ignore property c#"

C# Answers by Framework

Browse Popular Code Answers by Language