Replaced template class with empty library class.

This commit is contained in:
Harrison Deng 2022-05-19 22:10:12 -05:00
parent 55718048c7
commit 85d2c2cbda
3 changed files with 15 additions and 5 deletions

11
CFCoreAPI/CFCoreAPI.cs Normal file
View File

@ -0,0 +1,11 @@
namespace CFCoreAPI;
public class CFCoreAPI
{
private readonly string _apiKey;
public CFCoreAPI(string key)
{
this._apiKey = key;
}
}

View File

@ -6,4 +6,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.2.0" />
</ItemGroup>
</Project>

View File

@ -1,5 +0,0 @@
namespace CFCoreAPI;
public class Class1
{
}