App refactor done

This commit is contained in:
Michał Zieliński
2025-11-05 20:50:25 +01:00
parent b65ea7d17f
commit 5bee3912f1
97 changed files with 2454 additions and 2320 deletions

View File

@@ -0,0 +1,14 @@
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; }
public string? UserName { get; init; }
public DateTime CreatedAt { get; init; }
#endregion
}