markus / ConvertService / ServiceBase / Markus.Service.StationController / Data / StatusViewItem.cs @ c6bf88fd
이력 | 보기 | 이력해설 | 다운로드 (1.67 KB)
1 | af9bffc5 | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace Markus.Service.StationController.Data |
||
8 | { |
||
9 | public class StatusViewItem : Mvvm.ToolKit.NotifyExpectation |
||
10 | { |
||
11 | private int sortIndex; |
||
12 | |||
13 | private string serviceId; |
||
14 | private string serviceName; |
||
15 | private int aliveItems; |
||
16 | private int complated; |
||
17 | private int error; |
||
18 | |||
19 | |||
20 | public string ServiceId |
||
21 | { |
||
22 | get => serviceId; |
||
23 | set |
||
24 | { |
||
25 | serviceId = value; |
||
26 | OnPropertyChanged(() => ServiceId); |
||
27 | } |
||
28 | } |
||
29 | |||
30 | public string ServiceName |
||
31 | { |
||
32 | get => serviceName; |
||
33 | set |
||
34 | { |
||
35 | serviceName = value; |
||
36 | OnPropertyChanged(() => ServiceName); |
||
37 | } |
||
38 | } |
||
39 | |||
40 | public int Complated |
||
41 | { |
||
42 | get => complated; |
||
43 | set |
||
44 | { |
||
45 | complated = value; |
||
46 | OnPropertyChanged(() => Complated); |
||
47 | } |
||
48 | } |
||
49 | |||
50 | public int Error |
||
51 | { |
||
52 | get => error; |
||
53 | set |
||
54 | { |
||
55 | error = value; |
||
56 | OnPropertyChanged(() => Error); |
||
57 | } |
||
58 | } |
||
59 | public int AliveItems |
||
60 | { |
||
61 | get => aliveItems; |
||
62 | set |
||
63 | { |
||
64 | aliveItems = value; |
||
65 | OnPropertyChanged(() => AliveItems); |
||
66 | } |
||
67 | } |
||
68 | |||
69 | public int SortIndex |
||
70 | { |
||
71 | get => sortIndex; |
||
72 | set |
||
73 | { |
||
74 | sortIndex = value; |
||
75 | OnPropertyChanged(() => SortIndex); |
||
76 | } |
||
77 | } |
||
78 | } |
||
79 | } |