package com.hepl.tunefortwo.dto;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@Setter
@AllArgsConstructor // Lombok annotation to auto-generate the constructor
@NoArgsConstructor // Lombok annotation to auto-generate the no-args constructor
public class InstrumentImagesDTO {
    private String name;
    private String image;
    private String imageTitle;
}

