Move this to its own file and inherit from EventArgs

This commit is contained in:
Brandon Thetford
2024-02-21 03:25:44 -07:00
parent 64488be380
commit d69534823f
2 changed files with 6 additions and 5 deletions

View File

@@ -1843,8 +1843,4 @@ public static partial class Application
}
#endregion Keyboard handling
}
/// <summary>Event arguments for the <see cref="Application.Iteration"/> event.</summary>
public class IterationEventArgs
{ }
}

View File

@@ -0,0 +1,5 @@
namespace Terminal.Gui;
/// <summary>Event arguments for the <see cref="Application.Iteration"/> event.</summary>
public class IterationEventArgs : EventArgs
{ }