Files
HTMLParser/Plan B Html Parser (XNA 3.1)/Plan B Html Parser/Nodes/HtmlDivNode.cs
headhunter45_cp d280868fc8
2010-09-26 06:31:06 +00:00

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; } }
}
}