mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 01:05: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
|
|
}
|
|
}
|