You can make it a list of an inner class with two bool members easily enough. Just make the inner class serializable and the members public. Like:
public List<MyBoolContainer> someBools;
[System.Serializable]
public class MyBoolContainer
{
public bool someBool1 = false;
public bool someBool2 = false;
}