per.cs 366 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Controls;
  7. using System.Xml.Linq;
  8. namespace WpfApp1
  9. {
  10. public class per
  11. {
  12. public string pol { get; set; } = "";
  13. public override string ToString()
  14. {
  15. return $"{pol}";
  16. }
  17. }
  18. }