using System; namespace CIG.Translation.ArabicSupport { public class TashkeelLocation { public TashkeelLocation(char tashkeel, int position) { this.tashkeel = tashkeel; this.position = position; } public char tashkeel; public int position; } }