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