Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/add-has-password'
Browse files Browse the repository at this point in the history
  • Loading branch information
volkanceylan committed Aug 12, 2023
2 parents fa54a0d + 3f886ad commit 2b7e505
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Serenity.Net.Core/Authorization/IHasPassword.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
namespace Serenity.Net.Core.Authorization;

/// <summary>
/// Used to determine if user has a password.
/// If interface not found on user definition it assumes user has a password.
/// </summary>
public interface IHasPassword
{
/// <summary>
/// Is user has a password
/// </summary>
public bool HasPassword { get; }
}

0 comments on commit 2b7e505

Please sign in to comment.