Example #1
0
 private bool Equals(RocketMessage other)
 {
     return(string.Equals(Id, other.Id) && string.Equals(RoomId, other.RoomId) &&
            string.Equals(Message, other.Message) && IsBot == other.IsBot && Equals(CreatedBy, other.CreatedBy) &&
            CreatedOn.Equals(other.CreatedOn) && Equals(EditedBy, other.EditedBy) &&
            EditedOn.Equals(other.EditedOn) && IsBotMentioned == other.IsBotMentioned &&
            IsFromMyself == other.IsFromMyself && string.Equals(Type, other.Type) &&
            Mentions.Equals(other.Mentions) && Starred.Equals(other.Starred));
 }