7 lines
133 B
C#
7 lines
133 B
C#
namespace ConeCalorimeter.Services;
|
|
|
|
public interface IScaleService : IDisposable
|
|
{
|
|
bool TryReadCurrentMass(out double value);
|
|
}
|