2024-07-15 10:31:26 +08:00

24 lines
439 B
C#

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()
{
}
}
}