Skip to content

Instantly share code, notes, and snippets.

@VAnsimov
Created October 13, 2021 15:42
Show Gist options
  • Save VAnsimov/252e0085b955596432441abf715ebef0 to your computer and use it in GitHub Desktop.
Save VAnsimov/252e0085b955596432441abf715ebef0 to your computer and use it in GitHub Desktop.
// 1
protocol ListModelStatePotocol {
var text: String { get }
}
// 2
protocol ListModelActionsProtocol: AnyObject {
func parse(number: Int)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment