13 lines
260 B
C#
13 lines
260 B
C#
using System;
|
|
|
|
namespace Elwig.Helpers.Weighing {
|
|
public class WeighingEventArgs : EventArgs {
|
|
|
|
public WeighingResult Result { get; set; }
|
|
|
|
public WeighingEventArgs(WeighingResult result) {
|
|
Result = result;
|
|
}
|
|
}
|
|
}
|