Versions stable (inachevée mais prête à un déploiement en prod)
This commit is contained in:
16
src/main/java/dev/lions/events/FileUploadEvent.java
Normal file
16
src/main/java/dev/lions/events/FileUploadEvent.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package dev.lions.events;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* Événement de notification lors du téléchargement d'un fichier.
|
||||
*/
|
||||
@Getter
|
||||
@Builder
|
||||
public class FileUploadEvent {
|
||||
private String fileId;
|
||||
private String fileName;
|
||||
private long size;
|
||||
private long timestamp;
|
||||
}
|
||||
Reference in New Issue
Block a user