Changed the value of the Sender constant in the Role class from "Sender" to "EGSender" to ensure consistency with updated naming conventions.
23 lines
582 B
C#
23 lines
582 B
C#
#if NETFRAMEWORK
|
|
using System;
|
|
#endif
|
|
|
|
namespace EnvelopeGenerator.Domain.Constants
|
|
{
|
|
public static class Role
|
|
{
|
|
[Obsolete("Use Receiver.PreAuth or Receiver.FullyAuth")]
|
|
public const string PreAuth = "PreAuth";
|
|
|
|
[Obsolete("Use Receiver.PreAuth or Receiver.FullyAuth")]
|
|
public const string FullyAuth = "FullyAuth";
|
|
|
|
public static class Receiver
|
|
{
|
|
public const string PreAuth = "PreAuth";
|
|
public const string FullyAuth = "FullyAuth";
|
|
}
|
|
|
|
public const string Sender = "EGSender";
|
|
}
|
|
} |