export class TopicTemplate {
    private name: string;
    private docType: string;

    constructor(name: string, docType: string) {
        this.name = name;
        this.docType = docType;
    }
}
