aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Common/Models/Misc/Patch.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-01-21 09:23:06 +0200
committertranstrike <transtrike@gmail.com>2021-01-21 09:23:06 +0200
commit009e01dc3dc2f78db6a660c65bf0d20bae702348 (patch)
tree04d792a08f13e9bfe23841b393439dcd37ab8b16 /src/DevHive.Common/Models/Misc/Patch.cs
parent8179af787a7bf375753a178b89111a91d84a8bb8 (diff)
downloadDevHive-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.cs9
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; }
+ }
+}