19 lines
442 B
C#
19 lines
442 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; }
|
|
}
|
|
public class VideoQuestionShowDto : VideoQuestion
|
|
{
|
|
public VideoQuestionKonw[] KonwArr { get; set; }
|
|
}
|
|
}
|