PkmnLib.NET/PkmnLib.Dynamic/Events/DialogEvent.cs

17 lines
420 B
C#
Raw Normal View History

2024-11-02 11:59:55 +00:00
namespace PkmnLib.Dynamic.Events;
public class DialogEvent : IEventData
{
/// <inheritdoc />
public EventBatchId BatchId { get; init; } = new();
2025-03-02 16:19:57 +00:00
2024-11-02 11:59:55 +00:00
public DialogEvent(string message, Dictionary<string, object>? parameters = null)
{
Message = message;
Parameters = parameters;
}
public string Message { get; set; }
2025-03-02 16:19:57 +00:00
2024-11-02 11:59:55 +00:00
public Dictionary<string, object>? Parameters { get; set; }
}