2026-01-28 23:25:16 +07:00
|
|
|
package ru.soune.nocopy.dto.file;
|
|
|
|
|
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
public class CheckStatus {
|
|
|
|
|
private Long userId;
|
|
|
|
|
private Integer countChecked;
|
|
|
|
|
private Integer remainingLimit;
|
|
|
|
|
private LocalDateTime lastCheckAt;
|
|
|
|
|
}
|