diff --git a/Contact.java b/Contact.java
new file mode 100644
index 0000000000000000000000000000000000000000..fbabe73432e2a4c93f84f6e1f7ec97f3c58a924f
--- /dev/null
+++ b/Contact.java
@@ -0,0 +1,82 @@
+package Projet;
+
+import javax.swing.event.SwingPropertyChangeSupport;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.Scanner;
+
+public class Contact {
+
+    private String nom;
+    private ArrayList<String> prenom = new ArrayList<String>();
+    private String addresse;    
+    private ArrayList<String> telephone = new ArrayList<String>();
+    private ArrayList<String> mail = new ArrayList<String>();
+    private ArrayList<String> social = new ArrayList<String>();
+    private String job;
+
+    public Contact(String nom, ArrayList<String> prenom, String addresse, ArrayList<String> telephone, ArrayList<String> mail, ArrayList<String> social, String job){
+        
+        this.nom = nom;
+        this.prenom = prenom;
+        this.addresse = addresse;
+        this.telephone = telephone;
+        this.mail = mail;
+        this.social = social;
+        this.job = job; 
+    }
+
+
+    public void setNouveauPrenom(ArrayList<String> prenom){
+        this.prenom = prenom;
+    }
+
+
+    public  setJob(String job){
+        this.job = job;
+    }
+
+
+    public  setAddresss(String address){
+        this.address = address;
+    }
+
+    public String getNom(){
+        return this.nom;
+    }
+    public String getJob(){
+        return this.job;
+    }
+    public String getAddress(){
+        return this.addresse;
+    }
+
+    public String getPrenom(){
+        String listString = String.join(",", prenom);
+        return listString;
+    }
+    
+    public String getMail(){
+        String listString = String.join(",", mail);
+        return listString;
+    }
+    
+    public String getTelephone(){
+        String listString = String.join(",", telephone);
+        return listString;
+    }
+    
+    public String getSocial(){
+        String listString = String.join(",", social);
+        return listString;
+    }
+    @Override
+    public String toString() {
+         return (this.getNom()+" - "+ this.getPrenom() + " - " + this.getMail()  + " - " +  this.getSocial() + " - " +  this.getAddress() + " - " +  this.getJob() + " - " +  this.getTelephone());
+    }
+   
+    
+
+
+
+}