Files
xSaherElmIds/Interfaces/IXIdentityMessageProvider.cs
T
2026-03-22 14:08:25 +03:30

16 lines
449 B
C#

namespace xIds.Interfaces
{
public interface IXIdentityMessageProvider
{
string InviteMsg { get; }
string RegistrationApproveMsg { get; }
string RegisteredMsg { get; }
string VerificationCodeMsg { get; }
string ChangePasswordMsg { get; }
string PasswordChangedMsg { get; }
string NewDeviceLoggedInMsg { get; }
bool IsReady();
void PrepareMessages(string lang);
}
}