using xExceptions.Attributes; namespace xHttpService.Constants { public enum XHttpMethod { [StringValue ("GET")] GET, [StringValue ("POST")] POST, [StringValue ("PUT")] PUT, [StringValue ("DELETE")] DELETE } }