/**
 * @name IGenerateable
 * @description
 * Interface for Generateable objects
 */
export interface IGenerateable {
    /**
     * @name Data
     * @description
     * The data which can be converted to a JSON String.
     */
    Data: any;
}
