#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"; } }