mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-10 00:51:00 +08:00
11 lines
154 B
Java
11 lines
154 B
Java
package com.openisle.dto;
|
|
|
|
import com.openisle.model.MedalType;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class MedalSelectRequest {
|
|
|
|
private MedalType type;
|
|
}
|