Implement Google authentication (for Web) and user management system
This commit is contained in:
10
Bimix.Domain/Entities/User.cs
Normal file
10
Bimix.Domain/Entities/User.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user