diff --git a/README.md b/README.md index fe0ce5c..c860950 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,10 @@ Let's build a better world together! ```c# public class GetAllOrdersApiEndpoint : ApiEndpoint { - public override string Path => "https://example.com/api/v1/orders"; - public override HttpMethod Method => HttpMethod.Get; + public GetAllOrdersApiEndpoint() + : base(HttpMethod.Get, "https://example.com/api/v1/orders") + { + } } ```