ContactStruct.swift 282 Bytes
Newer Older
1
//
Javier Heisekce committed
2
//  ContactStruct.swift
3 4 5 6 7 8 9
//  ContactsApp
//
//  Created by User on 3/16/20.
//  Copyright © 2020 jheisecke. All rights reserved.
//

import Foundation
Javier Heisekce committed
10
import ContactsUI
11

Javier Heisekce committed
12 13 14
struct ContactStruct {
    var isExpanded: Bool
    let contacts  : [CNContact]
15
    let letter    : String
16
}