first commit

This commit is contained in:
2025-02-26 23:42:19 +01:00
commit 777ea98be1
283 changed files with 88266 additions and 0 deletions
@@ -0,0 +1,24 @@
namespace OpenWarehouse.auth.lib.Model.Account;
public class CreateUserModelReturn() : CreateUserModel()
{
public CreateUserModelReturn(string? returnMess, string? newUserId, bool isCreated, List<RoleStatus>? roleStatusList) : this()
{
ReturnMess = returnMess;
NewUserId = newUserId;
IsCreated = isCreated;
Roles = roleStatusList;
}
public string? ReturnMess { get; set; }
public string? NewUserId { get; set; }
public bool IsCreated { get; set; }
public new List<RoleStatus>? Roles { get; set; }
public class RoleStatus
{
public bool Exist { get; set; }
public bool Added { get; set; }
public string? Name { get; set; }
public string? Mess { get; set; }
}
}