BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Models/AgentEventRule.cs

14 lines
316 B
C#
Raw Normal View History

2025-01-06 05:54:48 +00:00
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("event_type")]
public string EntityType { get; set; }
}