| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Editor.Model
- {
- public class DataItem
- {
- public DataItem(string title)
- {
- Title = title;
- }
- public string Title
- {
- get;
- private set;
- }
- }
- }
|