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