Skip to content

Instantly share code, notes, and snippets.

@GrillPhil
Last active May 31, 2018 20:18
Show Gist options
  • Save GrillPhil/2fdd98c0f3c2eefd66bd74a3c003db70 to your computer and use it in GitHub Desktop.
Save GrillPhil/2fdd98c0f3c2eefd66bd74a3c003db70 to your computer and use it in GitHub Desktop.
namespace ServerlessMiteIntegrationDemo
{
class Project
{
public int Budget { get; set; }
public int Id { get; set; }
public string Name { get; set; }
public int ConsumedBudget { get; set; }
}
class ProjectWrapper
{
public Project Project { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment