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.
This commit is contained in:
tekh 2025-09-01 10:19:36 +02:00
parent 09eb91b6be
commit ae4f5560fe

View File

@ -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,