10 lines
192 B
C#
Raw Permalink Normal View History

using System;
namespace Microsoft.Devices.Sensors
{
public class SensorReadingEventArgs<T> : EventArgs where T : ISensorReading
{
public T SensorReading { get; set; }
}
}