Strategy

interface Strategy {
	/**
	 * Name of the DeFi strategy
	 * @maxLength 100
	 */
	name?: string;
	/**
	 * Category of the DeFi strategy
	 * @maxLength 100
	 */
	category?: string;
	/** Protocol object */
	protocol: ProtocolGeneric;
}