From b5e2b660f775cc283f0fb167829c1edb55c1ea11 Mon Sep 17 00:00:00 2001 From: Pius Friesch <3247619+pfriesch@users.noreply.github.com> Date: Thu, 9 Dec 2021 17:46:30 +0100 Subject: [PATCH] Add Image to clipboard data --- ElectronNET.API/Entities/Data.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ElectronNET.API/Entities/Data.cs b/ElectronNET.API/Entities/Data.cs index 2dcca894..893c55c1 100644 --- a/ElectronNET.API/Entities/Data.cs +++ b/ElectronNET.API/Entities/Data.cs @@ -34,5 +34,7 @@ public class Data /// The title of the url at text. /// public string Bookmark { get; set; } + + public NativeImage? Image { get; set; } } -} \ No newline at end of file +}