Skip to content

Instantly share code, notes, and snippets.

@GrillPhil
Last active May 31, 2018 20:17
Show Gist options
  • Save GrillPhil/ab6b23d27607f29bbb9b8dca8d6edb71 to your computer and use it in GitHub Desktop.
Save GrillPhil/ab6b23d27607f29bbb9b8dca8d6edb71 to your computer and use it in GitHub Desktop.
using Newtonsoft.Json;
namespace ServerlessMiteIntegrationDemo
{
class TimeEntry
{
[JsonProperty("project_id")]
public int ProjectId { get; set; }
public int Minutes { get; set; }
}
class TimeEntryWrapper
{
[JsonProperty("time_entry")]
public TimeEntry TimeEntry { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment