using System;
namespace Chernobyl.Measures.Time
{
///
/// An interface for working with types that define a unit of measurement.
///
public interface ITime : IMeasurement
{
///
/// Converts this unit of time to .
///
/// This unit of measurement in .
Seconds ToSeconds();
}
}