Replaced template class with empty library class.
This commit is contained in:
parent
55718048c7
commit
85d2c2cbda
11
CFCoreAPI/CFCoreAPI.cs
Normal file
11
CFCoreAPI/CFCoreAPI.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace CFCoreAPI;
|
||||
public class CFCoreAPI
|
||||
{
|
||||
private readonly string _apiKey;
|
||||
|
||||
|
||||
public CFCoreAPI(string key)
|
||||
{
|
||||
this._apiKey = key;
|
||||
}
|
||||
}
|
@ -6,4 +6,8 @@
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.2.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
@ -1,5 +0,0 @@
|
||||
namespace CFCoreAPI;
|
||||
public class Class1
|
||||
{
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user