mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-12 01:51:02 +08:00
11 lines
167 B
Java
11 lines
167 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
/** Request to redeem the milk tea activity. */
|
|
@Data
|
|
public class MilkTeaRedeemRequest {
|
|
|
|
private String contact;
|
|
}
|