Last active
December 13, 2015 17:38
-
-
Save nickharris/4949367 to your computer and use it in GitHub Desktop.
SensorReading
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Microsoft.SPOT; | |
using Microsoft.Azure.Zumo.MicroFramework.Core; | |
namespace SensorDemoMobileServices | |
{ | |
public class SensorReading : IMobileServiceEntity | |
{ | |
public int Id { get; set; } | |
public string SensorID { get; set; } | |
public double Temp { get; set; } | |
public double Humidity { get; set; } | |
public double Light { get; set; } | |
public DateTime DateAdded { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment