harmony/features/Home/src/main/ets/model/VideoDetailModel.ets
2025-05-19 16:42:50 +08:00

21 lines
333 B
Plaintext

export interface VideoDetailModel{
code:string;
video:VideoModel;
message:string;
}
export interface VideoModel{
note:string;
path:string;
readnum:string;
imgpath:string;
name:string;
isCollection:number;
polyv_uuid:string;
uuid:string;
public_name:string;
content:string;
point:number;
tags:string;
}