From ae4f5560fe2140e3d84aaa0054d5dc0887793874 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 1 Sep 2025 10:19:36 +0200 Subject: [PATCH] Remove unused enums from Constants.cs This commit removes the `ContractType` and `PageOrientation` enums from the `EnvelopeGenerator.Domain.Constants.cs` file. The `ContractType` enum included values for `Contract` and `ReadAndSign`, while the `PageOrientation` enum included values for `Portrait` and `Landscape`. The `ElementType` and `ColorType` enums remain unchanged. --- EnvelopeGenerator.Domain/Constants.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/EnvelopeGenerator.Domain/Constants.cs b/EnvelopeGenerator.Domain/Constants.cs index 4c6d5e0b..3e225663 100644 --- a/EnvelopeGenerator.Domain/Constants.cs +++ b/EnvelopeGenerator.Domain/Constants.cs @@ -92,12 +92,6 @@ namespace EnvelopeGenerator.Domain Signature = 1 } - public enum ContractType - { - Contract = 1, - ReadAndSign = 2 - } - public enum ColorType { ReceiverColor1 = 1, @@ -126,12 +120,6 @@ namespace EnvelopeGenerator.Domain YesWithAttachment = 2 } - public enum PageOrientation - { - Portrait = 0, - Landscape = 1 - } - public enum EmailTemplateType { DocumentReceived = 0,