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

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;
}
}
}