namespace InnovEnergy.Lib.WebServer;
public enum HttpMethod
{
Get,
Post,
Put,
Head,
Delete,
Connect,
Options,
Trace,
Patch,
Unknown
}