質問編集履歴
1
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -36,4 +36,21 @@
|
|
36
36
|
}
|
37
37
|
}
|
38
38
|
}
|
39
|
+
```
|
40
|
+
|
41
|
+
```C#
|
42
|
+
//EEW.cs
|
43
|
+
using System;
|
44
|
+
using System.Collections.Generic;
|
45
|
+
using System.Text;
|
46
|
+
|
47
|
+
namespace EEW
|
48
|
+
{
|
49
|
+
public class EEW
|
50
|
+
{
|
51
|
+
public string ParseStatus { get; set; }
|
52
|
+
public string Title { get; set; } //ここどうすればいいのでしょうか。
|
53
|
+
|
54
|
+
}
|
55
|
+
}
|
39
56
|
```
|