Files
2026-03-04 10:03:45 +08:00

16 lines
182 B
C#

namespace I2.Loc
{
internal class ArabicMapping
{
public int from;
public int to;
public ArabicMapping(int from, int to)
{
this.from = from;
this.to = to;
}
}
}