90bbb1860d
Quant Engine CI/CD Pipeline / validate-core (push) Failing after 9s
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Failing after 6s
Quant Engine CI/CD Pipeline / validate-ui-and-storage (push) Has been skipped
Snapshot Admin Deployment / build-and-deploy (push) Failing after 2m30s
Deploy to Production / Build & Deploy to Production (push) Failing after 3m49s
14 lines
482 B
C#
14 lines
482 B
C#
namespace QuantEngine.Core.Models
|
|
{
|
|
public class WorkspaceAccount
|
|
{
|
|
public int Ordinal { get; set; }
|
|
public string Username { get; set; } = string.Empty;
|
|
public string PasswordHash { get; set; } = string.Empty;
|
|
public string Role { get; set; } = "Admin";
|
|
public string IsActive { get; set; } = "true";
|
|
public string CreatedAt { get; set; } = string.Empty;
|
|
public string UpdatedAt { get; set; } = string.Empty;
|
|
}
|
|
}
|