ADD title and description fields to VideoMetadata type
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
type VideoMetadata = {
|
||||
title: string,
|
||||
description: string,
|
||||
startPoint: number,
|
||||
endPoint: number,
|
||||
fps: number,
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user