From 7e2631cb21f0008c4608a5b7f077222973687222 Mon Sep 17 00:00:00 2001 From: TekH Date: Sat, 6 Jun 2026 21:22:30 +0200 Subject: [PATCH] Add SenderAppType enum to represent sender application types A new namespace `EnvelopeGenerator.Domain.Constants` was added, containing the `SenderAppType` enumeration. This enum defines two members: `LegacyFormApp` (0) and `ReceiverUIBlazorApp` (1). The addition improves type safety and maintainability by providing a structured way to differentiate between sender application types. --- EnvelopeGenerator.Domain/Constants/SenderAppType.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 EnvelopeGenerator.Domain/Constants/SenderAppType.cs diff --git a/EnvelopeGenerator.Domain/Constants/SenderAppType.cs b/EnvelopeGenerator.Domain/Constants/SenderAppType.cs new file mode 100644 index 00000000..f9116cc6 --- /dev/null +++ b/EnvelopeGenerator.Domain/Constants/SenderAppType.cs @@ -0,0 +1,8 @@ +namespace EnvelopeGenerator.Domain.Constants +{ + public enum SenderAppType + { + LegacyFormApp = 0, + ReceiverUIBlazorApp = 1 + } +} \ No newline at end of file