10 lines
319 B
C#
10 lines
319 B
C#
namespace BimAI.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; }
|
|
} |