namespace XHWK.Model
{
///
/// 视频模型
///
public class Model_Video
{
private string _videPath;
private string _thumbnailPath;
private Enum_VideoType _videoType;
private Enum_WKVidetype _wkType;
private string _RSTime;
private string _videoSize;
///
/// 视频路径
///
public string VidePath { get => _videPath; set => _videPath = value; }
///
/// 缩略图路径
///
public string ThumbnailPath { get => _thumbnailPath; set => _thumbnailPath = value; }
///
/// 视频类型
///
public Enum_VideoType VideoType { get => _videoType; set => _videoType = value; }
///
/// 微课类型
///
public Enum_WKVidetype WkType { get => _wkType; set => _wkType = value; }
///
/// 录制时间
///
public string RSTime { get => _RSTime; set => _RSTime = value; }
///
/// 视频大小
///
public string VideoSize { get => _videoSize; set => _videoSize = value; }
}
///
/// 视频格式类型
///
public enum Enum_VideoType
{
MP4 = 1,
FlV = 2,
AVI = 3
}
///
/// 录制视频类型
///
public enum Enum_WKVidetype
{
///
/// 录屏
///
RecordingScreen = 1,
///
/// 录课
///
RecordingLessons = 2
}
}