Files
hamann-ausgabe-core/Archive/HaDocument/Models/OptionalBool.cs
2022-11-25 19:15:23 +01:00

14 lines
186 B
C#

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