mirror of
https://github.com/tappollo/makata.git
synced 2026-01-12 17:03:04 +08:00
13 lines
169 B
Swift
13 lines
169 B
Swift
//
|
|
// File.swift
|
|
//
|
|
//
|
|
// Created by Michael Ong on 2/3/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol ButtonLoadable: AnyObject {
|
|
var isLoading: Bool { get set }
|
|
}
|