Files
Bucket/Buckets.Logic/OverflowEventArgs.cs
KaseToatz1337 d3de812339 added events
2024-10-03 09:16:40 +02:00

8 lines
171 B
C#

namespace Buckets.Logic
{
public class OverflowEventArgs(int overflowAmount) : EventArgs
{
public int OverflowAmount { get; } = overflowAmount;
}
}