forked from zzzprojects/System.Linq.Dynamic.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClass.cs
More file actions
25 lines (18 loc) · 639 Bytes
/
Copy pathClass.cs
File metadata and controls
25 lines (18 loc) · 639 Bytes
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
using System.Collections.Generic;
using System.Xml.Serialization;
namespace DynamicLinqWebDocs.Models
{
public class Class
{
[XmlAttribute(AttributeName = "namespace")]
public string Namespace { get; set; }
[XmlAttribute(AttributeName="name")]
public string Name { get; set; }
public string Description { get; set; }
[XmlAttribute(AttributeName = "isInterface")]
public bool IsInterface { get; set; }
public List<Method> Methods { get; set; }
public List<Property> Properties { get; set; }
public string Remarks { get; set; }
}
}