Multiple fields should not be declared on a single line. This affects readability, is less convenient to change for version control purposes, and can be error-prone to modify.
Separate the grouped fields into separate lines.
type
TMyType = class(TObject)
private
FId, FAge: Integer;
end;
type
TMyType = class(TObject)
private
FId: Integer;
FAge: Integer;
end;