BotSharp/src/Infrastructure/BotSharp.Abstraction/Conversations/Models/StateChangeModel.cs

26 lines
684 B
C#
Raw Normal View History

2024-03-28 18:16:16 +00:00
namespace BotSharp.Abstraction.Conversations.Models;
public class StateChangeModel
{
[JsonPropertyName("conversation_id")]
public string ConversationId { get; set; }
[JsonPropertyName("message_id")]
public string MessageId { get; set; }
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("before_value")]
public string BeforeValue { get; set; }
2024-03-31 03:43:45 +00:00
[JsonPropertyName("before_active_rounds")]
public int? BeforeActiveRounds { get; set; }
2024-03-28 18:16:16 +00:00
[JsonPropertyName("after_value")]
public string AfterValue { get; set; }
2024-03-31 03:43:45 +00:00
[JsonPropertyName("after_active_rounds")]
public int? AfterActiveRounds { get; set; }
2024-03-28 18:16:16 +00:00
}