Ooui-tws-port/Ooui/Paragraph.cs

19 lines
263 B
C#

using System;
namespace Ooui
{
public class Paragraph : Element
{
public Paragraph ()
: base ("p")
{
}
public Paragraph (string text)
: this ()
{
Text = text;
}
}
}