2025-11-18 20:38:35 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace DiunaBI.Domain.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
public class User
|
|
|
|
|
|
{
|
2025-12-08 21:54:48 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// System user ID for automated operations (imports, scheduled jobs, etc.)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static readonly Guid AutoImportUserId = Guid.Parse("f392209e-123e-4651-a5a4-0b1d6cf9ff9d");
|
|
|
|
|
|
|
2025-11-18 20:38:35 +01:00
|
|
|
|
#region Properties
|
|
|
|
|
|
public Guid Id { get; init; }
|
|
|
|
|
|
public string? Email { get; init; }
|
|
|
|
|
|
public string? UserName { get; set; }
|
|
|
|
|
|
public DateTime CreatedAt { get; init; }
|
|
|
|
|
|
#endregion
|
2025-05-31 19:26:02 +02:00
|
|
|
|
}
|