package LibrarySystem.domain.medien; public interface Ausleihbar { void ausleihen(); void rueckgabeMedium(); boolean istOverdue(); }