Ooui-tws-port/Ooui/Span.cs

19 lines
251 B
C#
Raw Normal View History

2017-06-16 05:34:12 +00:00
using System;
namespace Ooui
{
public class Span : Element
{
public Span ()
: base ("span")
{
}
2017-06-16 07:07:47 +00:00
public Span (string text)
: this ()
{
Text = text;
}
2017-06-16 05:34:12 +00:00
}
}