Files
Control-Center/backend/Entities/AgentStatus.cs

13 lines
246 B
C#
Raw Normal View History

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
}