#if NETFRAMEWORK using System; #endif namespace EnvelopeGenerator.Domain.Constants { public static class Role { [Obsolete("Use Receiver.TFA")] public const string ReceiverTFA = Receiver.TFA; [Obsolete("Use Receiver.Full")] public const string ReceiverFull = Receiver.Full; public static class Receiver { public const string TFA = "EGReceiverTFA"; public const string Full = "EGReceiver"; } public const string Sender = "EGSender"; } }