package dst.ass1.jpa.model;

public interface IMembership {

    Long getId();

    void setId(Long id);

    Boolean getPremium();

    void setPremium(Boolean premium);

    Double getDiscount();

    void setDiscount(Double discount);

    ICoursePlatform getCoursePlatform();

    void setCoursePlatform(ICoursePlatform coursePlatform);

    IParticipant getParticipant();

    void setParticipant(IParticipant participant);
}
