using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using XHWK.Model; namespace XHWK.WKTool.Models { public class FileDirectoryModel : NotifyModel { private int _serialNumber; /// /// 序号 /// public int SerialNumber { get => _serialNumber; set { _serialNumber = value; OnPropertyChanged("SerialNumber"); } } private string _videoName; /// /// 视频名称 /// public string VideoName { get => _videoName; set { _videoName = value; OnPropertyChanged("VideoName"); } } private int _videoDuration; /// /// 视频时长 /// public int VideoDuration { get => _videoDuration; set { _videoDuration = value; OnPropertyChanged("VideoDuration"); } } private string _videoSize; /// /// 视频大小 /// public string VideoSize { get => _videoSize; set { _videoSize = value; OnPropertyChanged("VideoSize"); } } private long _videoSizes; /// /// 视频大小 /// public long VideoSizes { get => _videoSizes; set { _videoSizes = value; OnPropertyChanged("VideoSizes"); } } private string _videoTime; /// /// 日期 /// public string VideoTime { get => _videoTime; set { _videoTime = value; OnPropertyChanged("VideoTime"); } } private string _colour; /// /// 颜色 /// public string Colour { get => _colour; set { _colour = value; OnPropertyChanged("Colour"); } } private bool _isEnabled; /// /// 是否可编辑 /// public bool IsEnabled { get => _isEnabled; set { _isEnabled = value; OnPropertyChanged("IsEnabled"); } } public string Path { get; set; } private string _visi; /// /// 显示 /// public string Visi { get => _visi; set { _visi = value; OnPropertyChanged("Visi"); } } private string _coll; /// /// 显示 /// public string Coll { get => _coll; set { _coll = value; OnPropertyChanged("Coll"); } } /// /// 唯一编号 /// public string FileGuid { get; set; } /// /// 视频类型 /// public string VideoType { get; set; } /// /// 初始名称 /// public string Name { get; set; } /// /// 文件路径 /// public string FilePath { get; set; } } }