mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-13 02:20:56 +08:00
15 lines
284 B
Java
15 lines
284 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
/** DTO representing a search result entry. */
|
|
@Data
|
|
public class SearchResultDto {
|
|
private String type;
|
|
private Long id;
|
|
private String text;
|
|
private String subText;
|
|
private String extra;
|
|
private Long postId;
|
|
}
|