Skip to content

Instantly share code, notes, and snippets.

@nickharris
Last active December 13, 2015 17:38
Show Gist options
  • Save nickharris/4949367 to your computer and use it in GitHub Desktop.
Save nickharris/4949367 to your computer and use it in GitHub Desktop.
SensorReading
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