mirror of
https://github.com/openeggbert/mobile-eggbert-kni-web.git
synced 2025-03-25 15:47:51 +01:00
10 lines
195 B
C#
10 lines
195 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Microsoft.Devices.Sensors
|
|||
|
{
|
|||
|
|
|||
|
public class SensorReadingEventArgs<T> : EventArgs where T : ISensorReading
|
|||
|
{
|
|||
|
public T SensorReading { get; set; }
|
|||
|
}
|
|||
|
}
|