Aggiunti dati base Auto

This commit is contained in:
La Programmatrice Verde 2025-09-25 11:00:13 +02:00
commit 7adae6c268

View File

@ -0,0 +1,24 @@
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package eserciziogarage;
/**
*
* @author Verde
*/
public class Auto {
String targa;
public Auto(String p_targa){
this.targa = p_targa;
}
public String GetTarga(){
return this.targa;
}
public void SetTarga(String p_targa){
this.targa = p_targa;
}
}