Can someone explain what this small piece of code means.

Code:
struct Record {
   int ID;
   int EntryTime;
   Position next;
};
Is "Position" a newly created type? Thanks in advance.