2025-10-11 11:33:46 +02:00
|
|
|
namespace BimAI.Domain.Entities;
|
2025-07-19 22:50:38 +02:00
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
}
|