Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Created January 3, 2021 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sturdysturge/fe3afe8cab96ce337127566bc138ffbd to your computer and use it in GitHub Desktop.
Save sturdysturge/fe3afe8cab96ce337127566bc138ffbd to your computer and use it in GitHub Desktop.
class DataModel: NSObject, ObservableObject {
@Published var progress = Float(0)
@Published var progressText = "0%"
@Published var image: UIImage? = nil
var activeDownload: Download? = nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment