public bool Equals(NarrationInformation other)
 {
     if (other == null)
     {
         return(false);
     }
     return(ViewIndex.Equals(other.ViewIndex) &&
            MessageIndex.Equals(other.MessageIndex) &&
            SubIndex.Equals(other.SubIndex));
 }