# SIMCONNECT_RECV_FACILITY_MINIMAL_LIST The **SIMCONNECT\_RECV\_FACILITY\_MINIMAL\_LIST** structure is used to provide minimal information on the number of elements in a list of facilities returned to the client, and the number of packets that were used to transmit the data.   ##### Syntax ``` cpp struct SIMCONNECT_RECV_FACILITY_MINIMAL_LIST : public SIMCONNECT_RECV { DWORD RequestID; DWORD ArraySize; DWORD EntryNumber; DWORD OutOf; SIMCONNECT_FACILITY_MINIMAL rgData[dwArraySize] }; ```   ##### Members {{< table-wrapper >}} | Member | Description | |-----------------------|-----------------------------------------------------------------------------------------------------------------------------------------------| | `RequestID` | ID of the request. | | `ArraySize` | Number of elements in the `Data` struct. | | `EntryNumber` | Current page index, from 0 to `OutOf`-1. Mutltiple pages may be required when the `Data` member has too much information for a single return. | | `OutOf` | The total number of pages that this data forms a part of. | | `rgData[dwArraySize]` | Array of [`SIMCONNECT_FACILITY_MINIMAL`](simconnect-facility-minimal/) structures. | {{< /table-wrapper >}}   ##### Remarks   This structure inherits the [`SIMCONNECT_RECV_FACILITIES_LIST`](simconnect-recv-list-template/) structure, which identifies the number of elements in the list, and the number of packets needed to transmit all the data.   See the remarks for [SimConnect\_RequestFacilitesList](../facilities/simconnect-requestfaciliteslist/).