// // Licensed under the MIT License. See LICENSE file in the project root for full license information. // namespace MUnique.OpenMU.PlugIns.Tests; using System.ComponentModel; /// /// Event args for which tell us, if the plugin got executed. /// /// public class MyEventArgs : CancelEventArgs { /// /// Gets or sets a value indicating whether the plugin instance was executed in the test. /// public bool WasExecuted { get; set; } /// /// Gets or sets a text. /// public string? Text { get; set; } }