FruitBankHybridApp/FruitBank.Common/Interfaces/IMeasuringAttributeValues.cs

9 lines
201 B
C#

namespace FruitBank.Common.Interfaces;
public interface IMeasuringAttributeValues
{
double? NetWeight { get; set; }
double? GrossWeight { get; set; }
bool? IsMeasurable { get; set; }
}