Files
2024-08-31 12:07:21 +03:00

9 lines
222 B
Java

package Model;
public interface IVehicle {
String getBrand();
void setBrand(String brand) throws IllegalArgumentException;
String getColor();
void setColor(String color) throws IllegalArgumentException;
}