Entfernen der RejectedReason und IsRejected Eigenschaften aus der EnvelopeReceiver Entität und DTO.

This commit is contained in:
Developer 02 2024-05-31 15:38:38 +02:00
parent 0e4cfc452f
commit f26f400937
2 changed files with 0 additions and 8 deletions

View File

@ -10,8 +10,6 @@
string? PrivateMessage,
DateTime AddedWhen,
DateTime? ChangedWhen,
string? RejectionReason,
bool IsRejected,
EnvelopeDto? Envelope,
ReceiverDto? Receiver);
}

View File

@ -40,12 +40,6 @@ namespace EnvelopeGenerator.Domain.Entities
[Column("CHANGED_WHEN", TypeName = "datetime")]
public DateTime? ChangedWhen { get; set; }
[Column("REJECTION_REASON")]
public string? RejectionReason { get; set; }
[NotMapped]
public bool IsRejected => RejectionReason is not null;
[ForeignKey("EnvelopeId")]
public Envelope? Envelope { get; set; }