mirror of
https://github.com/openeggbert/mobile-eggbert-kni-web.git
synced 2025-03-25 07:37:50 +01:00
11 lines
149 B
C#
11 lines
149 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Microsoft.Devices.Sensors
|
|||
|
|
|||
|
{
|
|||
|
public interface ISensorReading
|
|||
|
{
|
|||
|
DateTimeOffset Timestamp { get; }
|
|||
|
}
|
|||
|
}
|