equal
deleted
inserted
replaced
|
1 using System; |
|
2 using System.Collections.Generic; |
|
3 using System.Linq; |
|
4 using System.Text; |
|
5 |
|
6 namespace FingersDance.Control.ListVideo |
|
7 { |
|
8 [Serializable] |
|
9 public class ListVideoItem |
|
10 { |
|
11 string _Name = ""; |
|
12 string _Path = ""; |
|
13 string _Preview = ""; |
|
14 |
|
15 public string Name |
|
16 { |
|
17 get { return _Name; } |
|
18 set { _Name = value; } |
|
19 } |
|
20 |
|
21 public string Path |
|
22 { |
|
23 get { return _Path; } |
|
24 set { _Path = value; } |
|
25 } |
|
26 |
|
27 public string Preview |
|
28 { |
|
29 get { return _Preview; } |
|
30 set { _Preview = value; } |
|
31 } |
|
32 |
|
33 public ListVideoItem() { } |
|
34 } |
|
35 } |