VoiDPlugins/OemKill/IndexedInf.cs
2020-11-06 21:59:27 -08:00

15 lines
No EOL
319 B
C#

namespace VoiDPlugins.OemKill
{
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;
}
}
}