|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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
- }
-
- }
|