How to create a TRoComplexType with TTime property?

Hi

I am using Delphi Alexandria (latest patch) with RemObjects v 10.0.0.1521
I have a TRoComplexType of:

TTest = class(TRoComplexType)
   private
      FHour: TTime;
      FError: string;
    published
      property hour: TTime read FHour write FHoour;
      property error: string read FError write FError;
  end;

When I try to update the interface file (right-clicking the RODL file and choosing Update interface file) it complains that TTime is an unknown type

Should I have to use other type? If so, which?

Hi,

use TDateTime type
if you want to store current hour (0-23) use Integer type

Thanks!