TashkeelLocation.cs 248 B

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