mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-15 03:20:55 +08:00
13 lines
178 B
Java
13 lines
178 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class AdminGrantPointRequest {
|
|
|
|
private String username;
|
|
private int amount;
|
|
}
|