BotSharp/src/Infrastructure/BotSharp.Abstraction/MessageHub/Models/HubObserveData.cs

8 lines
207 B
C#
Raw Normal View History

2025-07-28 22:41:28 +00:00
namespace BotSharp.Abstraction.MessageHub.Models;
2025-06-17 18:17:28 +00:00
public class HubObserveData : ObserveDataBase
{
2025-06-17 22:57:57 +00:00
public string EventName { get; set; } = null!;
2025-06-17 18:17:28 +00:00
public RoleDialogModel Data { get; set; } = null!;
}