Ooui-tws-port/Ooui/List.cs

13 lines
184 B
C#
Raw Normal View History

2017-06-21 01:29:14 +00:00
using System;
namespace Ooui
{
public class List : Element
{
public List (bool ordered = false)
: base (ordered ? "ol" : "ul")
{
}
}
}