質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -75,3 +75,37 @@
|
|
75
75
|
}
|
76
76
|
|
77
77
|
```
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
```C#
|
82
|
+
|
83
|
+
//EEW.cs
|
84
|
+
|
85
|
+
using System;
|
86
|
+
|
87
|
+
using System.Collections.Generic;
|
88
|
+
|
89
|
+
using System.Text;
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
namespace EEW
|
94
|
+
|
95
|
+
{
|
96
|
+
|
97
|
+
public class EEW
|
98
|
+
|
99
|
+
{
|
100
|
+
|
101
|
+
public string ParseStatus { get; set; }
|
102
|
+
|
103
|
+
public string Title { get; set; } //ここどうすればいいのでしょうか。
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
}
|
108
|
+
|
109
|
+
}
|
110
|
+
|
111
|
+
```
|