16 lines
182 B
C#
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;
|
|
}
|
|
}
|
|
}
|