-
Notifications
You must be signed in to change notification settings - Fork 0
/
Keyword.cs
40 lines (29 loc) · 982 Bytes
/
Keyword.cs
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
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml.Serialization;
namespace RobotXMLParser
{
public class Keyword
{
public Keyword()
{
}
[XmlAttribute(AttributeName="name")]
public string Name{ get; set; }
[XmlAttribute(AttributeName = "type")]
public string Type { get; set; }
[XmlElement(ElementName="kw")]
//public Keyword[] Keywords{ get; set; }
public List<Keyword> Keywords { get; set; }
[XmlElement(ElementName="arguments")]
//public Argument[] Arguments { get; set; }
public List<Argument> Arguments { get; set; }
[XmlElement(ElementName = "status")]
//public ResultStatus[] Status { get; set; }
public List<ResultStatus> Status { get; set; }
[XmlElement(ElementName="msg")]
//public Message[] Msg { get; set; }
public List<Message> Msg { get; set; }
}
}