| 12345678910111213141516171819202122232425262728293031 |
-
- namespace Tree
- {
- public class TreeInfoViewModel
- {
- private int id;
- private string comment;
- public TreeInfoViewModel(int id, string comment)
- {
- this.id = id;
- this.comment = comment;
- }
- public int Id
- {
- get
- {
- return this.id;
- }
- }
- public string Comment
- {
- get
- {
- return this.comment;
- }
- }
- }
- }
|