package com.sonymusic.dx.dxadvsearchservice.dto;

public class ParticipantDTO {
    private Long participantNo;
    private String fullName;
    private boolean isPreferredParticipant;

    public ParticipantDTO(Long participantNo, String fullName,boolean isPreferredParticipant) {
        this.participantNo = participantNo;
        this.fullName = fullName;
        this.isPreferredParticipant = isPreferredParticipant;
    }

    public boolean isPreferredParticipant() {
        return isPreferredParticipant;
    }

    public void setPreferredParticipant(boolean preferredParticipant) {
        isPreferredParticipant = preferredParticipant;
    }

    public Long getParticipantNo() {
        return participantNo;
    }

    public void setParticipantNo(Long participantNo) {
        this.participantNo = participantNo;
    }

    public String getFullName() {
        return fullName;
    }

    public void setFullName(String fullName) {
        this.fullName = fullName;
    }

}
