Skip to content

Instantly share code, notes, and snippets.

@Kinani
Last active March 10, 2017 12:51
Show Gist options
  • Save Kinani/1b77274a2edc860467812ac2ccfda4e5 to your computer and use it in GitHub Desktop.
Save Kinani/1b77274a2edc860467812ac2ccfda4e5 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Newtonsoft.Json;
namespace UltraReadingWeb.Models
{
public class UltraReading
{
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
[JsonProperty(PropertyName = "reading")]
public string Reading { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment