Deal — единая кодовая база
ci / build-test (push) Canceled after 0s

SaaS-мониторинг Telegram: ядро (модули Cards/Kanban/Pipeline/Tenants/Settings/
Discovery, Api, Infrastructure), сервисы telegram/ai/ml/storage, фронт Vue,
контракты и grpc-hosting, деплой-конфиги (dev/prod/observability/CI-раннер),
Gitea Actions CI, документация (ТЗ, техдок, api-map, код-стайл, планы, бэклог).

Текущее состояние: все этапы роадмапа 0–12 закрыты, сборка 5 sln 0/0,
тесты 1340/130/52/38/9 зелёные.
This commit is contained in:
Rustam Khalimov
2026-09-11 23:56:47 +03:00
commit 27c7831910
1383 changed files with 158436 additions and 0 deletions
@@ -0,0 +1,22 @@
namespace Deal.Infrastructure.Persistence.Entities;
/// <summary>
/// Пользователь тенанта в системной схеме public.
/// </summary>
public sealed class UserEntity
{
public Guid Id { get; set; } = Guid.NewGuid();
/// <summary>
/// Логин пользователя
/// </summary>
public string Login { get; set; } = string.Empty;
public Guid TenantId { get; set; }
public string PasswordHash { get; set; } = string.Empty;
public string Status { get; set; } = "active";
public DateTimeOffset CreatedAt { get; set; }
}