jsonignore c# newtonsoft using code example
Example: json ignore property c#
public class Account
{
public string FullName { get; set; }
public string EmailAddress { get; set; }
[JsonIgnore]
public string PasswordHash { get; set; }
}