14 lines
186 B
C#
14 lines
186 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ooui
|
|||
|
{
|
|||
|
public class Body : Element
|
|||
|
{
|
|||
|
public Body ()
|
|||
|
: base ("Body")
|
|||
|
{
|
|||
|
Id = "document.body";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|