diff --git a/EnvelopeGenerator.Domain/Entities/Envelope.cs b/EnvelopeGenerator.Domain/Entities/Envelope.cs index ebe15c83..5247c114 100644 --- a/EnvelopeGenerator.Domain/Entities/Envelope.cs +++ b/EnvelopeGenerator.Domain/Entities/Envelope.cs @@ -104,8 +104,20 @@ public class Envelope [Column("REMINDER_INTERVAL_DAYS")] public int? ReminderIntervalDays { get; set; } +#if NETFRAMEWORK [Column("ENVELOPE_TYPE")] public int? EnvelopeTypeId { get; set; } +#elif NET + + private EnvelopeSigningType _signingType = EnvelopeSigningType.WetSignature; + + [Column("ENVELOPE_TYPE")] + public EnvelopeSigningType SigningType + { + get => _signingType; + set => _signingType = value.Normalize(); + } +#endif [Column("CERTIFICATION_TYPE")] public int? CertificationType { get; set; }