BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Models/AgentEventRule.cs
Jicheng Lu 8dff3f5ce3 rename
2025-01-06 00:01:14 -06:00

14 lines
317 B
C#

namespace BotSharp.Abstraction.Agents.Models;
public class AgentEventRule
{
public string Name { get; set; }
public bool Disabled { get; set; }
[JsonPropertyName("event_name")]
public string EventName { get; set; }
[JsonPropertyName("entity_type")]
public string EntityType { get; set; }
}