using System;

namespace Elwig.Helpers.Weighing {
    public class WeighingEventArgs : EventArgs {

        public WeighingResult Result { get; set; }

        public WeighingEventArgs(WeighingResult result) {
            Result = result;
        }
    }
}