2017-06-16 07:05:13 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ooui
|
|
|
|
{
|
|
|
|
public class Image : Element
|
|
|
|
{
|
2018-02-02 02:43:23 +00:00
|
|
|
public string Source
|
|
|
|
{
|
|
|
|
get => GetStringAttribute ("src", null);
|
|
|
|
set => SetAttributeProperty ("src", value);
|
2017-06-16 07:05:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Image ()
|
|
|
|
: base ("img")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|