ShowItem.cs 300 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using FWindSoft.Wpf;
  7. namespace Test
  8. {
  9. public class ShowItem
  10. {
  11. public string Name { get; set; }
  12. public PropertyCollection Parameters { get; set; }
  13. }
  14. }