using NpgsqlTypes;
using System;
namespace Npgsql.Replication.PgOutput.Messages;
///
/// The base class of all Logical Replication Protocol Messages
///
///
/// See https://www.postgresql.org/docs/current/protocol-logicalrep-message-formats.html for details about the
/// protocol.
///
public abstract class PgOutputReplicationMessage : ReplicationMessage
{
///
public override string ToString() => GetType().Name;
}