VoiDPlugins/Tool/OemKill/IndexedInf.cs
2020-12-13 04:59:00 +08:00

15 lines
No EOL
316 B
C#

namespace VoiDPlugins.Tool
{
class IndexedInf
{
public int index;
public string inf;
public string name;
public IndexedInf(int index, string name, string inf)
{
this.index = index;
this.inf = inf;
this.name = name;
}
}
}