请问,以下语句,如何转换为delphi6语句?unit DbAccess;
interface
uses
  System.Collections.Generic;type
  public DatabaseSchema = class
    public Tables: List<TableSchema>;
    public Views: List<ViewSchema>;    public constructor Create;
  end; // class DatabaseSchemaimplementationconstructor DatabaseSchema.Create;
begin
  Tables := List<TableSchema>.Create;
  Views := List<ViewSchema>.Create;
end;end.