-
Notifications
You must be signed in to change notification settings - Fork 0
/
Node.cs
52 lines (46 loc) · 983 Bytes
/
Node.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
41
42
43
44
45
46
47
48
49
50
51
52
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Text;
using System.Transactions;
namespace Mdparser12
{
public class Node
{
public string Id { get; set; }
public List<Node> NodeList = new List<Node>();
}
public class Source : Node
{
public Source(string Id)
{
this.Id = Id;
}
public string URL { get; set; }
public string Description { get; set; }
}
public class Column : Node
{
public Column(string Id)
{
this.Id = Id;
}
}
public class Code : Node
{
public String SourceCode { get; set; }
public Code(string Id)
{
this.Id = Id;
}
}
public class BookMark : Node
{
public BookMark(string Id)
{
this.Id = Id;
}
public string Description { get; set; }
public string URL { get; set; }
}
}