diff options
| author | transtrike <transtrike@gmail.com> | 2021-01-21 09:23:06 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-01-21 09:23:06 +0200 |
| commit | 009e01dc3dc2f78db6a660c65bf0d20bae702348 (patch) | |
| tree | 04d792a08f13e9bfe23841b393439dcd37ab8b16 /src/DevHive.Common/Models/Misc/Patch.cs | |
| parent | 8179af787a7bf375753a178b89111a91d84a8bb8 (diff) | |
| download | DevHive-009e01dc3dc2f78db6a660c65bf0d20bae702348.tar DevHive-009e01dc3dc2f78db6a660c65bf0d20bae702348.tar.gz DevHive-009e01dc3dc2f78db6a660c65bf0d20bae702348.zip | |
Tryed implementing the http patch
Diffstat (limited to 'src/DevHive.Common/Models/Misc/Patch.cs')
| -rw-r--r-- | src/DevHive.Common/Models/Misc/Patch.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/DevHive.Common/Models/Misc/Patch.cs b/src/DevHive.Common/Models/Misc/Patch.cs new file mode 100644 index 0000000..ea5a4f1 --- /dev/null +++ b/src/DevHive.Common/Models/Misc/Patch.cs @@ -0,0 +1,9 @@ +namespace DevHive.Common.Models.Misc +{ + public class Patch + { + public string Name { get; set; } + public object Value { get; set; } + public string Action { get; set; } + } +} |
