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.
23 lines
580 B
C#
23 lines
580 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 = "Sender";
|
|
}
|
|
} |