13 lines
184 B
C#
13 lines
184 B
C#
|
using System;
|
||
|
|
||
|
namespace Ooui
|
||
|
{
|
||
|
public class List : Element
|
||
|
{
|
||
|
public List (bool ordered = false)
|
||
|
: base (ordered ? "ol" : "ul")
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|