MyFile.cs 439 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace YoloV5ImageLableWpfApp
  7. {
  8. internal class MyFile
  9. {
  10. public string Name { get; set; }
  11. public string Path { get; set; }
  12. public MyFile(string name,string path)
  13. {
  14. Name = name;
  15. Path = path;
  16. }
  17. public MyFile()
  18. {
  19. }
  20. }
  21. }