Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 789 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 789 Bytes

License: MIT Build status NuGet

PatchMap

A framework for .Net intended to assist in handling API calls, similar to these listed below, with a single code path:

POST /api/Users
{
    Name: 'Example User',
    IsActive: true
}

PUT /api/Users/1
{
    Name: 'New Name',
    IsActive: false
}

PATCH /api/Users/1
[
    { op: 'replace', path: 'Name', value: 'Patched Name' }
]

For more details, visit the Patchmap Wiki.