Last active
May 31, 2018 20:17
-
-
Save GrillPhil/ab6b23d27607f29bbb9b8dca8d6edb71 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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