Answers for "ignore json property c# without attribut"

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 "ignore json property c# without attribut"

C# Answers by Framework

Browse Popular Code Answers by Language