<?php

namespace CleantalkSP\Common;

/**
 * Simple data container for a single log entry.
 * Used by Logger implementations to structure log data.
 */
class LoggerRecord
{
    /**
     * @var string Timestamp of the log entry (formatted as 'Y-m-d H:i:s')
     */
    public $time = '';

    /**
     * @var string Log message content (may include JSON-encoded data)
     */
    public $message = '';
}
