diff --git a/Bücherwurm.csproj b/Bücherwurm.csproj index d453e9a..745e286 100644 --- a/Bücherwurm.csproj +++ b/Bücherwurm.csproj @@ -3,6 +3,7 @@ Exe netcoreapp3.1 + portable diff --git a/IProduct.cs b/IProduct.cs new file mode 100644 index 0000000..fa4b02a --- /dev/null +++ b/IProduct.cs @@ -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); + } +} \ No newline at end of file