add untracked IProduct

This commit is contained in:
nek0 2020-04-28 10:16:41 +02:00
parent 6df47aa73e
commit 8cd3906a32
2 changed files with 14 additions and 0 deletions

View File

@ -3,6 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<DebugType>portable</DebugType>
</PropertyGroup>
</Project>

13
IProduct.cs Normal file
View File

@ -0,0 +1,13 @@
namespace Bücherwurm
{
public interface IProduct
{
int ProductId {get; set;}
string Category {get; set; }
string ImageLink { get; set;}
void OverwriteNullId(int id);
}
}