2022-06-10 17:12:43 -04:00

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