Ooui-tws-port/Ooui/Div.cs

13 lines
146 B
C#
Raw Normal View History

2017-06-13 07:51:24 +00:00
using System;
namespace Ooui
{
public class Div : Element
{
2017-06-15 06:20:51 +00:00
public Div ()
: base ("div")
{
}
2017-06-13 07:51:24 +00:00
}
}