13 lines
326 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
2024-03-15 21:17:05 -05:00
namespace AAIntegration.SimmonsBank.API.Entities;
public class User
{
public int Id { get; set; }
public string ApiKey { get; set; }
public string SimmonsBankUsername { get; set; }
public string SimmonsBankPassword { get; set; }
public string MFAKey { get; set; }
2024-03-15 21:17:05 -05:00
}