mirror of
https://github.com/openeggbert/mobile-eggbert-monogame-desktop.git
synced 2025-03-26 16:09:24 +01:00
11 lines
146 B
C#
11 lines
146 B
C#
using System;
|
|
|
|
namespace Microsoft.Devices.Sensors
|
|
|
|
{
|
|
public interface ISensorReading
|
|
{
|
|
DateTimeOffset Timestamp { get; }
|
|
}
|
|
}
|