19 lines
316 B
C#
19 lines
316 B
C#
|
using System;
|
||
|
|
||
|
namespace Ooui
|
||
|
{
|
||
|
public class Label : Element
|
||
|
{
|
||
|
Element htmlFor = null;
|
||
|
public Element For {
|
||
|
get => htmlFor;
|
||
|
set => SetProperty (ref htmlFor, value, "htmlFor");
|
||
|
}
|
||
|
|
||
|
public Label ()
|
||
|
: base ("label")
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|