2024-03-15 21:35:24 -05:00
|
|
|
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; }
|
2024-03-19 21:21:27 -05:00
|
|
|
public string ApiKey { get; set; }
|
|
|
|
public string SimmonsBankUsername { get; set; }
|
|
|
|
public string SimmonsBankPassword { get; set; }
|
|
|
|
public string MFAKey { get; set; }
|
2024-03-15 21:35:24 -05:00
|
|
|
|
2024-03-15 21:17:05 -05:00
|
|
|
}
|