13 lines
326 B
C#
13 lines
326 B
C#
using System.Text.Json.Serialization;
|
|
|
|
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; }
|
|
|
|
} |