From 8cd3906a32d2660a8038f46ce70f227a0c6fcd46 Mon Sep 17 00:00:00 2001 From: nek0 Date: Tue, 28 Apr 2020 10:16:41 +0200 Subject: [PATCH] add untracked IProduct --- Bücherwurm.csproj | 1 + IProduct.cs | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 IProduct.cs 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