1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace YoloV5ImageLableWpfApp
- {
- internal class MyFile
- {
- public string Name { get; set; }
- public string Path { get; set; }
- public MyFile(string name,string path)
- {
- Name = name;
- Path = path;
- }
- public MyFile()
- {
- }
- }
- }
|