| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using Microsoft.WindowsAzure.MobileServices;
- using Newtonsoft.Json;
- namespace DevDaysTasks
- {
- public class TodoItem
- {
- string id;
- string name;
- bool done;
- [JsonProperty(PropertyName = "id")]
- public string Id
- {
- get { return id; }
- set { id = value;}
- }
- [JsonProperty(PropertyName = "text")]
- public string Name
- {
- get { return name; }
- set { name = value;}
- }
- [JsonProperty(PropertyName = "complete")]
- public bool Done
- {
- get { return done; }
- set { done = value;}
- }
- [Version]
- public string Version { get; set; }
- }
- }
|