AltitudeBot/src/main/java/com/alttd/DTO/JoinDate.java
Teriuihi 8a65c27bac Add command for managing staff join dates
Implemented `CommandStaffJoinDate` to allow viewing and setting staff join dates. Included methods in `QueriesStaffJoinDate` for database interactions and defined the `JoinDate` record to encapsulate join date information.
2024-08-25 19:39:43 +02:00

7 lines
109 B
Java

package com.alttd.DTO;
import java.time.Instant;
public record JoinDate (long userId, Instant joinDate){
}