12 lines
440 B
C#
12 lines
440 B
C#
namespace OpenWarehouse.auth.lib.Model.Auth;
|
|
|
|
public class RegisterReturnModel
|
|
{
|
|
public bool IsCreated { get; set; }
|
|
public string? AuthToken { get; set; }
|
|
public string? ProblemWithUsername { get; set; }
|
|
public string? ProblemWitbEmail { get; set; }
|
|
public string? ProblemWithPassword { get; set; }
|
|
public string? ProblemWithToken { get; set; }
|
|
public string? OtherWithOtherProblem { get; set; }
|
|
} |