Files
OpenWarehouse/OpenWarehouse.auth.lib/Model/Account/AccountDetailRespond.cs
T
2025-02-26 23:42:19 +01:00

12 lines
368 B
C#

namespace OpenWarehouse.auth.lib.Model.Account;
public class AccountDetailRespond
{
public string? Id { get; set; }
public string? DialCode { get; set; }
public string? Email { get; set; }
public string? UserName { get; set; }
public string? Phone { get; set; }
public Dictionary<string, string> Problems { get; set; } = new();
}