ASP.NET Core API Endpoints is a lightweight ASP.NET Core library that promotes building web APIs using a feature-focused endpoint pattern instead of traditional controller-based architecture. The project encourages developers to create small, single-responsibility endpoint classes that improve code clarity, testability, and maintainability in modern .NET applications. It provides base classes and conventions that reduce boilerplate while keeping full compatibility with standard ASP.NET Core middleware, routing, and dependency injection. ...