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

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