// // StatusCell.swift // Tusker // // Created by Shadowfacts on 11/18/19. // Copyright © 2019 Shadowfacts. All rights reserved. // import UIKit protocol StatusCell { var collapsible: Bool { get } var showStatusAutomatically: Bool { get set } func setCollapsed(_ collapsed: Bool, animated: Bool) }