From 7c88d4ed4bc7212dfe2cd71c4bae6600ba3770a1 Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 3 Feb 2026 14:54:10 +0100 Subject: [PATCH] Update Sender role constant to "EGSender" Changed the value of the Sender constant in the Role class from "Sender" to "EGSender" to ensure consistency with updated naming conventions. --- EnvelopeGenerator.Domain/Constants/Role.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Domain/Constants/Role.cs b/EnvelopeGenerator.Domain/Constants/Role.cs index d410c2ba..49bcf6fe 100644 --- a/EnvelopeGenerator.Domain/Constants/Role.cs +++ b/EnvelopeGenerator.Domain/Constants/Role.cs @@ -18,6 +18,6 @@ namespace EnvelopeGenerator.Domain.Constants public const string FullyAuth = "FullyAuth"; } - public const string Sender = "Sender"; + public const string Sender = "EGSender"; } } \ No newline at end of file