mirror of
https://github.com/openeggbert/mobile-eggbert-monogame-desktop.git
synced 2025-03-26 16:09:24 +01:00
10 lines
192 B
C#
10 lines
192 B
C#
using System;
|
|
|
|
namespace Microsoft.Devices.Sensors
|
|
{
|
|
|
|
public class SensorReadingEventArgs<T> : EventArgs where T : ISensorReading
|
|
{
|
|
public T SensorReading { get; set; }
|
|
}
|
|
} |