Первый коммит: модульный монолит ядра (.NET 10) и gRPC-сервисы ai/ml/telegram, фронтенд Vue 3/Vite/Tailwind, документация (ТЗ, инструкция пользователя, техдокументация, код-стайл), бэклог, скрипты развёртывания и архив прототипа LeadRadar.
28 lines
679 B
C#
28 lines
679 B
C#
namespace Deal.Modules.Cards.Application;
|
|
|
|
/// <summary>
|
|
/// Комментарий карточки.
|
|
/// </summary>
|
|
public sealed record CardComment
|
|
{
|
|
/// <summary>
|
|
/// Короткий id комментария.
|
|
/// </summary>
|
|
public string Id { get; init; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Автор (имя/«Вы»).
|
|
/// </summary>
|
|
public string By { get; init; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Текст комментария.
|
|
/// </summary>
|
|
public string Text { get; init; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Время создания, epoch-ms.
|
|
/// </summary>
|
|
public long AtMs { get; init; }
|
|
}
|