parent
6423df5217
commit
d9efbcd494
|
@ -0,0 +1,12 @@
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Ooui
|
||||||
|
{
|
||||||
|
public class List : Element
|
||||||
|
{
|
||||||
|
public List (bool ordered = false)
|
||||||
|
: base (ordered ? "ol" : "ul")
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,12 @@
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Ooui
|
||||||
|
{
|
||||||
|
public class ListItem : Element
|
||||||
|
{
|
||||||
|
public ListItem ()
|
||||||
|
: base ("li")
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue