add untracked IProduct
This commit is contained in:
parent
6df47aa73e
commit
8cd3906a32
2 changed files with 14 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
|
<DebugType>portable</DebugType>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
13
IProduct.cs
Normal file
13
IProduct.cs
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue