Last active
May 31, 2018 20:18
-
-
Save GrillPhil/2fdd98c0f3c2eefd66bd74a3c003db70 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
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