mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-12 10:00:58 +08:00
11 lines
197 B
Java
11 lines
197 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
/** Request body for updating user profile. */
|
|
@Data
|
|
public class UpdateProfileDto {
|
|
private String username;
|
|
private String introduction;
|
|
}
|