Ooui-tws-port/Ooui/Image.cs

19 lines
309 B
C#

using System;
namespace Ooui
{
public class Image : Element
{
public string Source
{
get => GetStringAttribute ("src", null);
set => SetAttributeProperty ("src", value);
}
public Image ()
: base ("img")
{
}
}
}