feat: introduce Serviceable interface

This commit is contained in:
2026-04-24 21:26:42 +03:30
parent 5d21f90ad7
commit 893c779c28
@@ -0,0 +1,10 @@
package org.example.behavior;
import org.example.model.Vehicle;
public interface Serviceable {
void performService();
boolean needsService(Vehicle v);
}