Files
Control-Center/backend/Entities/AgentStatus.cs
2026-04-26 10:18:06 +00:00

13 lines
246 B
C#

namespace ControlCenter.Api.Entities;
/// <summary>
/// Agent operational status enum.
/// Maps to the agent_status enum type in PostgreSQL.
/// </summary>
public enum AgentStatus
{
Active = 0,
Idle = 1,
Thinking = 2,
Error = 3
}