16 lines
230 B
C#
16 lines
230 B
C#
namespace I2.Loc
|
|
{
|
|
internal class TashkeelLocation
|
|
{
|
|
public char tashkeel;
|
|
|
|
public int position;
|
|
|
|
public TashkeelLocation(char tashkeel, int position)
|
|
{
|
|
this.tashkeel = tashkeel;
|
|
this.position = position;
|
|
}
|
|
}
|
|
}
|