Add new endpoint for the agent status

This commit is contained in:
2025-07-30 22:36:49 +07:00
parent 4b0da0e864
commit c454e87d7a
6 changed files with 174 additions and 0 deletions

View File

@@ -464,4 +464,13 @@ public static class Enums
Twors,
Uniform
}
/// <summary>
/// Agent status for indicating if an agent is active or not
/// </summary>
public enum AgentStatus
{
Offline,
Online
}
}