Files
elwig/Elwig/Helpers/Weighing/WeighingEventArgs.cs
Lorenz Stechauner f09753ccc2
All checks were successful
Test / Run tests (push) Successful in 2m4s
Remove byte order marks
2024-07-26 19:44:41 +02:00

8 lines
186 B
C#

using System;
namespace Elwig.Helpers.Weighing {
public class WeighingEventArgs(WeighingResult result) : EventArgs {
public readonly WeighingResult Result = result;
}
}