11 lines
146 B
C#
Raw Permalink Normal View History

using System;
namespace Microsoft.Devices.Sensors
{
public interface ISensorReading
{
DateTimeOffset Timestamp { get; }
}
}