namespace Deal.Modules.Cards.Application;
///
/// Комментарий карточки.
///
public sealed record CardComment
{
///
/// Короткий id комментария.
///
public string Id { get; init; } = string.Empty;
///
/// Автор (имя/«Вы»).
///
public string By { get; init; } = string.Empty;
///
/// Текст комментария.
///
public string Text { get; init; } = string.Empty;
///
/// Время создания, epoch-ms.
///
public long AtMs { get; init; }
}