using Newtonsoft.Json; using System.ComponentModel.DataAnnotations; namespace Swift.API.Common { public class PasswordReset { [Required] public string CustomerId { get; set; } public string Username { get; set; } // public string Dob { get; set; } [JsonIgnore] public string RandomPassword { get; set; } [JsonIgnore] public string RandomPin { get; set; } [JsonIgnore] public string User { get; set; } } }