/// <summary> /// Removes a chore from the trip. /// </summary> /// <param name="chore">The chore to remove</param> public void RemoveChore(Chore chore) => Chores.Remove(chore);
/// <summary> /// Adds a new chore to the trip. /// </summary> /// <param name="chore">The chore to add</param> public void AddChore(Chore chore) => Chores.Add(chore);