11 lines
149 B
C#
11 lines
149 B
C#
using System;
|
|
|
|
namespace Microsoft.Devices.Sensors
|
|
|
|
{
|
|
public interface ISensorReading
|
|
{
|
|
DateTimeOffset Timestamp { get; }
|
|
}
|
|
}
|