Initial Commit ...

This commit is contained in:
2024-01-25 04:45:40 +03:30
commit 57fe22e3db
13 changed files with 687 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
namespace xHttpService.Constants {
public partial struct ConfigurationNodeNames {
public const string HTTP_SERVICE_NODE_NAME = "HttpServiceConfiguration";
}
}
+17
View File
@@ -0,0 +1,17 @@
using xExceptions.Attributes;
namespace xHttpService.Constants {
public enum XHttpMethod {
[StringValue ("GET")]
GET,
[StringValue ("POST")]
POST,
[StringValue ("PUT")]
PUT,
[StringValue ("DELETE")]
DELETE
}
}