Ooui-tws-port/Ooui/ListItem.cs

19 lines
261 B
C#
Raw Normal View History

2017-06-21 01:29:14 +00:00
using System;
namespace Ooui
{
public class ListItem : Element
{
public ListItem ()
: base ("li")
{
}
2020-03-09 00:32:49 +00:00
public ListItem (string text)
: this ()
{
Text = text;
}
2017-06-21 01:29:14 +00:00
}
}