Files
hamann-ausgabe-core/HaDocumentV6/Models/OptionalBool.cs
2022-05-17 01:21:10 +02:00

14 lines
186 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace HaDocument.Models
{
public enum OptionalBool
{
True,
False,
None
}
}