8 lines
171 B
C#
8 lines
171 B
C#
namespace Buckets.Logic
|
|
{
|
|
public class OverflowEventArgs(int overflowAmount) : EventArgs
|
|
{
|
|
public int OverflowAmount { get; } = overflowAmount;
|
|
}
|
|
}
|