forked from zzzprojects/System.Linq.Dynamic.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProperty.cs
More file actions
37 lines (26 loc) · 938 Bytes
/
Property.cs
File metadata and controls
37 lines (26 loc) · 938 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
26
27
28
29
30
31
32
33
34
35
36
37
using System.Collections.Generic;
using System.Xml.Serialization;
namespace DynamicLinqWebDocs.Models
{
public class Property
{
public Property()
{
Frameworks = Frameworks.All;
}
[XmlAttribute(AttributeName = "name")]
public string Name { get; set; }
[XmlAttribute(AttributeName = "isStatic")]
public bool IsStatic { get; set; }
[XmlAttribute(AttributeName = "valueType")]
public string ValueType { get; set; }
public string Description { get; set; }
public string ValueTypeDescription { get; set; }
public string Remarks { get; set; }
public List<Example> Examples { get; set; }
[XmlAttribute(AttributeName = "frameworks")]
public Frameworks Frameworks { get; set; }
[XmlAttribute(AttributeName = "accessors")]
public PropertyAccessors Accessors { get; set; }
}
}