diff --git a/EnvelopeGenerator.Domain/Entities/Envelope.cs b/EnvelopeGenerator.Domain/Entities/Envelope.cs index 5ba90338..9b1f18a3 100644 --- a/EnvelopeGenerator.Domain/Entities/Envelope.cs +++ b/EnvelopeGenerator.Domain/Entities/Envelope.cs @@ -94,7 +94,7 @@ namespace EnvelopeGenerator.Domain.Entities public string Language { get; set; } [Column("SEND_REMINDER_EMAILS")] - public bool SendReminderEmails { get; set; } + public bool? SendReminderEmails { get; set; } [Column("FIRST_REMINDER_DAYS")] public int? FirstReminderDays { get; set; } @@ -114,7 +114,7 @@ namespace EnvelopeGenerator.Domain.Entities public int? CertificationType { get; set; } [Column("USE_ACCESS_CODE")] - public bool UseAccessCode { get; set; } + public bool? UseAccessCode { get; set; } [Column("FINAL_EMAIL_TO_CREATOR")] public int? FinalEmailToCreator { get; set; } @@ -132,7 +132,7 @@ namespace EnvelopeGenerator.Domain.Entities public User User { get; set; } [Column("TFA_ENABLED")] - public bool TfaEnabled { get; set; } + public bool? TfaEnabled { get; set; } #if NETFRAMEWORK = false; #endif