namespace ColaFlow.Modules.Mcp.Domain.ValueObjects; /// /// Status of a task lock for concurrency control /// public enum TaskLockStatus { /// /// The lock is currently active and held by an agent or user /// Active = 0, /// /// The lock has been explicitly released /// Released = 1, /// /// The lock has expired (5 minutes passed without activity) /// Expired = 2 }