Costruttore Influencer

This commit is contained in:
La Programmatrice Verde 2025-10-16 17:04:09 +02:00
parent bf723f7c0a
commit 31d18d969d

View File

@ -8,6 +8,14 @@ package ereditarieta;
*
* @author Verde
*/
public class Influencer {
public class Influencer extends Persona{
String numeroFollower;
String handle; //il nome sui social con cui trovare l'influencer
public Influencer(String p_nome, String p_cognome, String p_sesso, String p_età, String p_numeroFollower,
String p_handle) {
super(p_nome, p_cognome, p_sesso, p_età);
this.numeroFollower = p_numeroFollower;
this.handle = p_handle;
}
}