Add Sender constant to Role in Domain.Constants

Added a new Sender constant to the Role class within the EnvelopeGenerator.Domain.Constants namespace, allowing it to be used alongside existing Receiver role constants.
This commit is contained in:
2026-02-02 11:58:30 +01:00
parent 849a282ec5
commit c2fefe798d

View File

@@ -17,5 +17,7 @@ namespace EnvelopeGenerator.Domain.Constants
public const string PreAuth = "PreAuth";
public const string FullyAuth = "FullyAuth";
}
public const string Sender = "Sender";
}
}