13 lines
		
	
	
		
			273 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			273 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { BaseObject } from '../../_models/Basic/baseObject';
 | 
						|
 | 
						|
export class EducationLevel extends BaseObject {
 | 
						|
    constructor() {
 | 
						|
        super();
 | 
						|
    }
 | 
						|
    code: string;
 | 
						|
    description: string;
 | 
						|
  educationTypeID: number;
 | 
						|
  educationType: any;
 | 
						|
  concentration: string;
 | 
						|
}
 |