mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-11-04 12:15:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			394 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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() { }
 | 
						|
} |