2025-11-05 20:50:25 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace DiunaBI.Domain.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
public class User
|
|
|
|
|
|
{
|
|
|
|
|
|
#region Properties
|
|
|
|
|
|
public Guid Id { get; init; }
|
|
|
|
|
|
public string? Email { get; init; }
|
2025-11-09 19:39:52 +01:00
|
|
|
|
public string? UserName { get; set; }
|
2025-11-05 20:50:25 +01:00
|
|
|
|
public DateTime CreatedAt { get; init; }
|
|
|
|
|
|
#endregion
|
2025-05-31 19:26:02 +02:00
|
|
|
|
}
|