프로젝트

일반

사용자정보

통계
| 개정판:

hytos / DTI_PID / ID2PSN / Object / KeywordInfo.cs @ ddc1c369

이력 | 보기 | 이력해설 | 다운로드 (844 Bytes)

1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

    
7
namespace ID2PSN
8
{
9
    public class KeywordInfo
10
    {
11
        private string _UID;
12
        public string UID { get { return _UID; } }
13
        public string KeyWord { get; set; }
14
        public string Description { get; set; }
15

    
16
        private List<KeywordItem> _KeywordItems = new List<KeywordItem>();
17
        public List<KeywordItem> KeywordItems { get { return _KeywordItems; } set { _KeywordItems = value; } }
18
        
19
        public KeywordInfo(string UID)
20
        {
21
            _UID = UID;
22
            KeyWord = string.Empty;
23
            Description = string.Empty;
24
        }
25
    }
26

    
27
    public class KeywordItem
28
    {
29
        public string Remarks { get; set; }
30
        public string TargetSymbol { get; set; }
31
    }
32
}