blob: ac6f3a42522d981c3122dbc60876d8b71970187a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
namespace I2.Loc;
internal class TashkeelLocation
{
public char tashkeel;
public int position;
public TashkeelLocation(char tashkeel, int position)
{
this.tashkeel = tashkeel;
this.position = position;
}
}
|