markus / ConvertService / ServiceBase / Markus.Service.Station / SubStationServiceItem.cs @ 65674874
이력 | 보기 | 이력해설 | 다운로드 (529 Bytes)
1 | a5e5fff6 | taeseongkim | using Markus.Service.DataBase.Entities; |
---|---|---|---|
2 | using System; |
||
3 | 0157b158 | taeseongkim | using System.Collections.Generic; |
4 | using System.Linq; |
||
5 | using System.Text; |
||
6 | using System.Threading.Tasks; |
||
7 | |||
8 | namespace Markus.Service |
||
9 | { |
||
10 | public class SubStationServiceItem |
||
11 | { |
||
12 | 06f13e11 | taeseongkim | public bool IsOnline { get; set; } |
13 | a5e5fff6 | taeseongkim | public SERVICEPROPERTIES Properties { get;set;} |
14 | ff4b1e6e | taeseongkim | public WcfClient.StationServiceTask.StationServiceClient Service { get; set; } |
15 | 6f6e7dbf | taeseongkim | public int AliveCount { get; set; } |
16 | a5e5fff6 | taeseongkim | public List<ConvertDoc> ConvertItems { get; set; } |
17 | 0157b158 | taeseongkim | } |
18 | } |