Skip to content
Snippets Groups Projects
BadgesRepository.java 164 B
Newer Older
Gabriel Copat's avatar
Gabriel Copat committed
//Holds locations data repository
package Team5.SmartTowns.rewards;

import java.util.List;

public interface BadgesRepository {
    List<Badge> getAllBadges();
}