Implement Google authentication (for Web) and user management system

This commit is contained in:
Michał Zieliński
2025-07-19 22:50:38 +02:00
parent b673fd2da3
commit 14c61ca1ee
25 changed files with 1072 additions and 41 deletions

View File

@@ -0,0 +1,10 @@
namespace Bimix.Domain.Entities;
public class User : BaseEntity
{
public string GoogleId { get; set; } = default!;
public string Email { get; set; } = default!;
public string FullName { get; set; } = default!;
public bool IsActive { get; set; } = false;
public DateTime? LastLoginAt { get; set; }
}