Good morning all!
I have the following object in my C# MVC application
public class FamilyMember 
{
   public string FirstName { get; set; }
   public string LastName { get; set; }
   public string Age { get; set; }
   public string Relationship { get; set; }
}
And also I have a object that contains a collection of the above class
public class Authorization {
   public ICollection<FamilyMember> FamilyMembers { get; set; }
}
Now all of this information is displayed on a View using a loop:
<ul class="family-list small-text" id="family-list">
@for (int i = 0; i < familySize; i++)
{
    var member = Model.FamilyMembers.ElementAt(i);
    <li class="family-member">
        <label style="display: none;" for="FirstName" class="grey-text family-label">First Name:</label>
        <input style="display: none;" type="text" class="family-member-input" id="FirstName" name="FamilyMember.FirstName" value="@member.FirstName" />
        <label style="display: none;" for="LastName" class="grey-text family-label">Last Name:</label>
        <input style="display: none;" type="text" class="family-member-input" id="LastName" name="LastName" value="@member.LastName" />
        <label style="display: none;" for="Age" class="grey-text family-label">Age:</label>
        <input style="display: none;" type="text" class="family-member-input" id="Age" name="Age" value="@member.Age" />
        <label style="display: none;" for="Relationship" class="grey-text family-label">Relationship:</label>
        <input style="display: none;" type="text" class="family-member-input" id="Relationship" name="Relationship" value="@member.Relationship" />
    </li>
}
Where @familySize is the Count of the FamilyMember collection.
Now there's a button on this view called Save that, after clicking, serializes the above list, among more input elements, using the jQuery .serialize() method. The output from this method is then sent to an AJAX call which calls out to an action method I've set up in the MVC project:
var saveConfirmed = function () {
    saveTransfereeAjax(transfereeForm.serialize(), saveTransfereeSuccess, saveTransfereeFailure);
};
var saveTransfereeAjax = function (data, success, error) {
    console.log(data);
    bootbox.dialog({
        message:
            '<div class="text-center"><img src="/Content/Images/load-spinner.gif" alt="loader" /> <p>Processing...</p></div>'
    });
    $.ajax({
        data: data,
        dataType: "text",
        type: "POST",
        url: "/api/savetransferee",
        success: success,
        error: error
    })
};
Where transfereeForm is the form on my view that I'm looking to serialize. 
And here is the action method that is being POSTed to by the AJAX call.
public IHttpActionResult Save(Authorization authorization)
{
    //process authorization
}
Once I hit the action method, everything in the form seems to have serialized correctly, though not the members of the FamilyMember collection.
Is there any specific name attributes I need to have for each FamilyMember object's properties that are inside my view that would allow for each to be serialized into the FamilyMember collection? For example:
<input type='text' name='FamilyMember[i].FirstName' id='FamilyMember[i].FirstName' value='@member.FirstName' />
Where i represents the current index of the FamilyMember collection I'm iterating through.
 
    