ADD title and description fields to VideoMetadata type
This commit is contained in:
@@ -1,4 +1,6 @@
|
|||||||
type VideoMetadata = {
|
type VideoMetadata = {
|
||||||
|
title: string,
|
||||||
|
description: string,
|
||||||
startPoint: number,
|
startPoint: number,
|
||||||
endPoint: number,
|
endPoint: number,
|
||||||
fps: number,
|
fps: number,
|
||||||
|
|||||||
@@ -4,6 +4,8 @@ import lombok.Data;
|
|||||||
|
|
||||||
@Data
|
@Data
|
||||||
public class VideoMetadata {
|
public class VideoMetadata {
|
||||||
|
private String title;
|
||||||
|
private String description;
|
||||||
private Float startPoint;
|
private Float startPoint;
|
||||||
private Float endPoint;
|
private Float endPoint;
|
||||||
private Float fps;
|
private Float fps;
|
||||||
|
|||||||
Reference in New Issue
Block a user