Skip to content

Instantly share code, notes, and snippets.

@algopia
Created April 1, 2016 13:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save algopia/6c301a2221d1567bd7482b33d120e1c5 to your computer and use it in GitHub Desktop.
Save algopia/6c301a2221d1567bd7482b33d120e1c5 to your computer and use it in GitHub Desktop.
GR-PEACH + AzureでIoTを試す(組込みデバイスの情報をクラウドにあげるまで) ref: http://qiita.com/pia/items/711077847d03dd40e587
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace xxxxxxxxxxService.DataObjects
{
using Microsoft.Azure.Mobile.Server;
public class DeviceEntry : EntityData
{
public string DeviceId { get; set; }
public bool ServiceAvailable { get; set; }
public string IoTHubEndpoint { get; set; }
public string DeviceKey { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment