DataItem.cs 280 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Editor.Model
  6. {
  7. public class DataItem
  8. {
  9. public DataItem(string title)
  10. {
  11. Title = title;
  12. }
  13. public string Title
  14. {
  15. get;
  16. private set;
  17. }
  18. }
  19. }