jhm-ciberman/docs_gm

View on GitHub
src/doc_models/DocExample.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Represents an example code
 */
export default class DocExample {

    /**
     * The escaped code of the example
     */
    public code: string = "";

    /**
     * The caption of the code
     */
    public caption: string = "";

}