예제 #1
0
 /// <summary>
 /// Constructor for that accepts data from existing IttLetterBullet
 /// </summary>
 /// <param name="bullet">IttLetterBullet</param>
 public IttLetterBullet(IttLetterBullet bullet)
 {
     this.id        = bullet.id;
     this.paragraph = bullet.Paragraph;
     this.text      = bullet.Text;
 }
 /// <summary>
 /// Constructor, to create an Indexable Request
 /// </summary>
 /// <param name="index">int</param>
 /// <param name="bullet">IttLetterBullet</param>
 public IndexedIttLetterBullet(int index, IttLetterBullet bullet) : base(bullet)
 {
     this.index = index;
 }