14 lines
327 B
C#
14 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace PlanB.Html.Nodes
|
|
{
|
|
public class HtmlDivNode: HtmlNode
|
|
{
|
|
public static string StaticTagName { get { return "div"; } }
|
|
public override string TagName { get { return StaticTagName; } }
|
|
}
|
|
}
|