Allow APIs to use JWT Bearer auth.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2025-02-12 12:59:10 -07:00
parent efa2bbf6cc
commit 21846c8957
5 changed files with 99 additions and 38 deletions

View File

@@ -0,0 +1,8 @@
namespace CarCareTracker.Models
{
public class JWTValidateResult
{
public bool Success { get; set; }
public string EmailAddress { get; set; }
}
}