Ooui-tws-port/Ooui/Iframe.cs

19 lines
299 B
C#
Raw Normal View History

namespace Ooui
{
public class Iframe : Element
{
public Iframe()
: base("iframe")
{
}
string src = null;
public string Src
{
get => src;
set => SetProperty(ref src, value, "src");
}
}
}