Files
hamann-ausgabe-core/HaWeb/Settings/ParsingState/CommentState.cs

19 lines
394 B
C#

namespace HaWeb.Settings.ParsingState;
using System.Text;
public enum CommentType {
Comment,
Subcomment
}
public class CommentState : HaWeb.HTMLParser.IState {
internal string Category;
internal CommentType Type;
public CommentState(string category, CommentType type) {
this.Category = category;
this.Type = type;
}
public void SetupState() { }
}