Ooui-tws-port/Ooui/List.cs

13 lines
184 B
C#

using System;
namespace Ooui
{
public class List : Element
{
public List (bool ordered = false)
: base (ordered ? "ol" : "ul")
{
}
}
}