package com.cloudhandson.vpdbackoffice.domain.schemametadata; /** * Database row used only while assembling the schema metadata screen. */ public record SchemaMetadataColumnRow( String columnName, String dataType, String nullable, String comment ) { }