mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-12 01:51:02 +08:00
11 lines
172 B
Java
11 lines
172 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
|
|
/** DTO representing unread notification count. */
|
|
@Data
|
|
public class NotificationUnreadCountDto {
|
|
|
|
private long count;
|
|
}
|