Files
elwig/Elwig/Helpers/Weighing/WeighingResult.cs
2023-04-26 18:50:32 +02:00

27 lines
695 B
C#

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