Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save TungVuDuc2805/6c9d227c434a90cb868cc3ed524f249e to your computer and use it in GitHub Desktop.
Save TungVuDuc2805/6c9d227c434a90cb868cc3ed524f249e to your computer and use it in GitHub Desktop.
protocol ProfileSectionControllerProtocol {
var title: String {get}
var cells: [ProfileCellProtocol] {get set}
var rowCount: Int {get}
init(title: String, cells: [ProfileCellProtocol])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment