ADD title and description fields to VideoMetadata type

This commit is contained in:
2025-07-02 21:02:07 +02:00
parent 6cf454c484
commit 3ce1c1486a
2 changed files with 4 additions and 0 deletions

View File

@@ -4,6 +4,8 @@ import lombok.Data;
@Data
public class VideoMetadata {
private String title;
private String description;
private Float startPoint;
private Float endPoint;
private Float fps;