mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 12:44:58 +00:00
feat(essentials): #800 adds public access modifier on properties
This commit is contained in:
@@ -28,22 +28,22 @@ namespace PepperDash.Essentials.Core
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Indicates if the last submitted password was incorrect
|
/// Indicates if the last submitted password was incorrect
|
||||||
/// </summary>
|
/// </summary>
|
||||||
bool LastAttemptWasIncorrect { get; private set; }
|
public bool LastAttemptWasIncorrect { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Indicates that the login attempt has failed
|
/// Indicates that the login attempt has failed
|
||||||
/// </summary>
|
/// </summary>
|
||||||
bool LoginAttemptFailed { get; private set; }
|
public bool LoginAttemptFailed { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Indicates that the process was cancelled and the prompt should be dismissed
|
/// Indicates that the process was cancelled and the prompt should be dismissed
|
||||||
/// </summary>
|
/// </summary>
|
||||||
bool LoginAttemptCancelled { get; private set; }
|
public bool LoginAttemptCancelled { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A message to be displayed to the user
|
/// A message to be displayed to the user
|
||||||
/// </summary>
|
/// </summary>
|
||||||
string Message { get; private set; }
|
public string Message { get; private set; }
|
||||||
|
|
||||||
public PasswordPromptEventArgs(bool lastAttemptIncorrect, bool loginFailed, bool loginCancelled, string message)
|
public PasswordPromptEventArgs(bool lastAttemptIncorrect, bool loginFailed, bool loginCancelled, string message)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -203,6 +203,7 @@
|
|||||||
<Compile Include="Devices\PC\Laptop.cs" />
|
<Compile Include="Devices\PC\Laptop.cs" />
|
||||||
<Compile Include="Devices\ReconfigurableDevice.cs" />
|
<Compile Include="Devices\ReconfigurableDevice.cs" />
|
||||||
<Compile Include="Devices\VolumeDeviceChangeEventArgs.cs" />
|
<Compile Include="Devices\VolumeDeviceChangeEventArgs.cs" />
|
||||||
|
<Compile Include="DeviceTypeInterfaces\IPasswordPrompt.cs" />
|
||||||
<Compile Include="DeviceTypeInterfaces\ITvPresetsProvider.cs" />
|
<Compile Include="DeviceTypeInterfaces\ITvPresetsProvider.cs" />
|
||||||
<Compile Include="DeviceTypeInterfaces\LanguageLabel.cs" />
|
<Compile Include="DeviceTypeInterfaces\LanguageLabel.cs" />
|
||||||
<Compile Include="DeviceTypeInterfaces\ILanguageProvider.cs" />
|
<Compile Include="DeviceTypeInterfaces\ILanguageProvider.cs" />
|
||||||
|
|||||||
Reference in New Issue
Block a user