diff --git a/Ooui/Image.cs b/Ooui/Image.cs new file mode 100644 index 0000000..6bba7ff --- /dev/null +++ b/Ooui/Image.cs @@ -0,0 +1,18 @@ +using System; + +namespace Ooui +{ + public class Image : Element + { + string src = ""; + public string Source { + get => src; + set => SetProperty (ref src, value ?? "", "src"); + } + + public Image () + : base ("img") + { + } + } +}