namespace Elwig.Helpers.Weighing { /// /// Result of a weighing process on an industrial scale /// public class WeighingResult { /// /// Measured net weight in kg /// public int? Weight = null; /// /// Weighing id (or IdentNr) provided by the scale /// public string? WeighingId = null; /// /// Date string provided by the scale /// public string? Date = null; /// /// Time string provided by the scale /// public string? Time = null; } }