src/group/group.model.ts
        
                                Properties | 
                        
                                
  | 
                        
                                    constructor(code: string, description: string, type: GroupType, questions: QuestionListType)
                                 | 
                            ||||||||||||||||||||
| 
                                             Defined in src/group/group.model.ts:4 
                                         | 
                                    ||||||||||||||||||||
| 
                                         
                                                Parameters :
                                                 
                                
  | 
                            
| Public code | 
                                    code:     
                                 | 
                            
                                        Type :     string
            
                                     | 
                                
| 
                                             Defined in src/group/group.model.ts:7 
                                         | 
                                    
| Public description | 
                                    description:     
                                 | 
                            
                                        Type :     string
            
                                     | 
                                
| 
                                             Defined in src/group/group.model.ts:8 
                                         | 
                                    
| Public questions | 
                                    questions:     
                                 | 
                            
                                        Type :     QuestionListType
            
                                     | 
                                
| 
                                             Defined in src/group/group.model.ts:10 
                                         | 
                                    
| Public type | 
                                    type:     
                                 | 
                            
                                        Type :     GroupType
            
                                     | 
                                
| 
                                             Defined in src/group/group.model.ts:9 
                                         | 
                                    
import { GroupType } from '.';
import { Question } from '../question';
export abstract class Group<QuestionListType> {
  public constructor(
    public code: string,
    public description: string,
    public type: GroupType,
    public questions: QuestionListType
  ) { }
}