Allow MessageingType Nullable

This commit is contained in:
Yanan Wang 2023-10-27 15:25:16 -05:00
parent 8f7b4c7925
commit d26d8308d5

View file

@ -7,7 +7,7 @@ namespace BotSharp.Abstraction.Messaging.Models.RichContent
/// RESPONSE
/// </summary>
[JsonPropertyName("messaging_type")]
public string MessageingType { get; set; } = string.Empty;
public string? MessageingType { get; set; }
public T Message { get; set; }
}
}