From e72cfcb6326f7f7790beb5d6c5a111ffe8b7724e Mon Sep 17 00:00:00 2001 From: OlgunR Date: Wed, 11 Mar 2026 13:15:30 +0100 Subject: [PATCH] Add comment for status translation in EnvelopeHistory Added a developer note in EnvelopeHistory.cs to indicate that status translation should be implemented similarly to the envelope entity. No functional changes were made. --- EnvelopeGenerator.Domain/Entities/EnvelopeHistory.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/EnvelopeGenerator.Domain/Entities/EnvelopeHistory.cs b/EnvelopeGenerator.Domain/Entities/EnvelopeHistory.cs index b79cc9a5..d4ef33ab 100644 --- a/EnvelopeGenerator.Domain/Entities/EnvelopeHistory.cs +++ b/EnvelopeGenerator.Domain/Entities/EnvelopeHistory.cs @@ -44,5 +44,6 @@ namespace EnvelopeGenerator.Domain.Entities [NotMapped] public string StatusTranslated => My.Resources.Model.ResourceManager.GetString(Status.ToString()); + // here i have to do it like in envelope } } \ No newline at end of file