26 lines
309 B
C#
26 lines
309 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace HtmlFactory
|
|
{
|
|
internal class Enums
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace HtmlFactory.TagRenderCompat
|
|
{
|
|
public enum TagRenderMode
|
|
{
|
|
Normal = 0,
|
|
StartTag = 1,
|
|
EndTag = 2,
|
|
SelfClosing = 3
|
|
}
|
|
}
|