mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-13 02:20:56 +08:00
10 lines
153 B
Java
10 lines
153 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
/** Public key response for web push. */
|
|
@Data
|
|
public class PushPublicKeyDto {
|
|
private String key;
|
|
}
|