You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			476 B
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			19 lines
		
	
	
		
			476 B
		
	
	
	
		
			Dart
		
	
class GetMowadhafhiProjects {
 | 
						|
  int? projectId;
 | 
						|
  String? projectName;
 | 
						|
 | 
						|
  GetMowadhafhiProjects({this.projectId, this.projectName});
 | 
						|
 | 
						|
  GetMowadhafhiProjects.fromJson(Map<String, dynamic> json) {
 | 
						|
    projectId = json['projectId'];
 | 
						|
    projectName = json['projectName'];
 | 
						|
  }
 | 
						|
 | 
						|
  Map<String, dynamic> toJson() {
 | 
						|
    Map<String, dynamic> data = new Map<String, dynamic>();
 | 
						|
    data['projectId'] = this.projectId;
 | 
						|
    data['projectName'] = this.projectName;
 | 
						|
    return data;
 | 
						|
  }
 | 
						|
}
 |