package dst.ass2.service.api.courseplan;

import java.io.Serializable;
import java.util.List;

/**
 * A course plan belongs to a Participant in the context of a Membership (hence it holds the membership id). The course
 * plan data is simply a list of course ids.
 */
public class CoursePlan implements Serializable {

    private static final long serialVersionUID = 1L;

    private Long id;
    private Long membershipId;
    private List<Long> courses;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public Long getMembershipId() {
        return membershipId;
    }

    public void setMembershipId(Long membershipId) {
        this.membershipId = membershipId;
    }

    public List<Long> getCourses() {
        return courses;
    }

    public void setCourses(List<Long> courses) {
        this.courses = courses;
    }
}
