namespace Chernobyl.Measures { /// /// An interface for working with types that define a unit of measurement. /// /// The type of the raw value of the measurement. public interface IMeasurement { /// /// The raw value of the measurement. /// T Value { get; } } }