13 lines
246 B
C#
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
|
|
} |