MFlaw.cs
1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
namespace OS.Spin.ViewModle.Flaw
{
public class MFlaw : BasePropertyChanged
{
private string _flawName = string.Empty;
private double _meter ;
public double Meter
{
get { return _meter; }
set
{
_meter = value;
OnPropertyChanged("Meter");
}
}
public string FlawName
{
get { return _flawName; }
set
{
_flawName = value;
OnPropertyChanged("FlawName");
}
}
private string _score;
public string Score
{
get { return _score; }
set
{
_score = value;
OnPropertyChanged("Score");
}
}
private string _id = string.Empty;
public string Id
{
get { return _id; }
set
{
_id = value;
OnPropertyChanged("Id");
}
}
}
}