Learn.VideoAnalysis/VideoAnalysisCore/Model/Dto/VideoQuestionOSSDto.cs

15 lines
319 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VideoAnalysisCore.Model.Dto
{
public class VideoQuestionOSSDto: VideoQuestion
{
public string FilePath { get; set; }
public string KnowPointId { get; set; }
}
}