Files
elwig/Elwig/Helpers/Weighing/IEventScale.cs
Lorenz Stechauner b64ebec111
All checks were successful
Test / Run tests (push) Successful in 2m18s
Weighing: Do not ignore gross and tare weight and show it on DeliveryNote
2024-07-22 18:50:46 +02:00

12 lines
385 B
C#

namespace Elwig.Helpers.Weighing {
/// <summary>
/// Interface for controlling a weighing scale which automatically sends weighing updates
/// </summary>
public interface IEventScale : IScale {
public event EventHandler<WeighingEventArgs> WeighingEvent;
delegate void EventHandler<WeighingEventArgs>(object sender, WeighingEventArgs args);
}
}