Files
nexus/backend/Models/Projects.cs
T
AzuTear f5552218bc
CI - Build & Test / Backend (.NET) (push) Successful in 42s
CI - Build & Test / Frontend (Vue/TS) (push) Successful in 2m46s
CI - Build & Test / Security Check (push) Successful in 3s
CI - Build & Test / Deploy Nexus (push) Successful in 56s
feat: ship agent-first mission control v0.2.57
2026-07-31 22:39:47 +02:00

26 lines
639 B
C#

namespace Nexus.Api.Models;
/// <summary>
/// Transport contract for a Nexus-owned mission scope. Persistence entities
/// stay behind the API boundary so OpenAPI remains the frontend authority.
/// </summary>
public sealed record ProjectDto(
Guid Id,
string Name,
string Description,
string Status,
int Progress,
DateTimeOffset UpdatedAt,
OperationResultDto? Operation = null);
public sealed record ProjectTaskDto(
Guid Id,
string Title,
string State,
string Priority,
Guid ProjectId,
string? AssignedTo,
string? ExpectedFrom,
bool IsAgentTask,
DateTimeOffset UpdatedAt);