Create a unique type through the use of composite types. Verse offers several ways you can do this.
Class
A class is a template for creating objects with similar behaviors and properties (fields and methods).
Enum
An enum is a type used to store named sets of things.
Struct
A struct is a way to group several related variables together.
Subclass
A subclass is a class that extends the definition of another class by adding or modifying the fields and methods of the other class.
Interface
An interface provides a contract for how to interact with any class that implements the interface.
Constructor
A constructor is a special function that creates an instance of the class that it's associated with.