Mark class as abstract so we don't instantiate or inject it by accident

This commit is contained in:
Jeff Leung 2024-01-13 19:43:29 -08:00
parent 8523ddd60f
commit 0e56d778bc
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ using Microsoft.Extensions.Logging;
namespace AS1024.GeoFeed.Core.GeoFeedProviders
{
public class NetBoxGeoFeedProviderBase : IGeoFeedProvider
public abstract class NetBoxGeoFeedProviderBase : IGeoFeedProvider
{
protected readonly IConfiguration configuration;
protected readonly ILogger<NetBoxGeoFeedProvider> logger;