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
13 lines
437 B
C#
13 lines
437 B
C#
namespace QuantEngine.Core.Models
|
|
{
|
|
public class WorkspaceSession
|
|
{
|
|
public string SessionTokenHash { get; set; } = string.Empty;
|
|
public string Username { get; set; } = string.Empty;
|
|
public string Role { get; set; } = "Admin";
|
|
public string CreatedAt { get; set; } = string.Empty;
|
|
public string ExpiresAt { get; set; } = string.Empty;
|
|
public string? RevokedAt { get; set; }
|
|
}
|
|
}
|