Почистить комментарии от упоминаний процесса

Удалены <remarks>, <summary> сжаты до короткой фразы, вырезаны
ссылки на Task/Ruling/этап/python/прототип; //-комментарии со ссылками
на процесс удалены; то же в .proto. Правила обновлены в
docs/spec/Код-стайл-Дейл.md. Строк комментариев 27210 -> ~19100.
This commit is contained in:
Rustam Khalimov
2026-09-11 13:39:39 +03:00
parent 5f5538d33b
commit b053d58335
902 changed files with 3902 additions and 12074 deletions
@@ -1,12 +1,12 @@
namespace Deal.Infrastructure.Persistence.Entities;
/// <summary>
/// Сессия пользователя в системной схеме public. Хранится SHA-256-хеш токена.
/// Сессия пользователя в системной схеме public.
/// </summary>
public sealed class SessionEntity
{
/// <summary>
/// SHA-256-хеш токена сессии (первичный ключ).
/// SHA-256-хеш токена сессии
/// </summary>
public string TokenHash { get; set; } = string.Empty;
@@ -22,8 +22,7 @@ public sealed class SessionEntity
public DateTimeOffset CreatedAt { get; set; }
/// <summary>
/// Маркер impersonation (план Task 7): оператор, создавший сессию; null — обычная сессия.
/// Нужен для аудита impersonation_stopped при logout (AuthService/LogoutAsync).
/// Маркер impersonation
/// </summary>
public Guid? ImpersonatedByOperatorId { get; set; }
}