mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-11-03 19:55:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			186 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			186 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Text;
 | 
						|
 | 
						|
namespace HaDocument.Models
 | 
						|
{
 | 
						|
    public enum OptionalBool
 | 
						|
    {
 | 
						|
        True,
 | 
						|
        False,
 | 
						|
        None
 | 
						|
    }
 | 
						|
}
 |