Skip to content

Instantly share code, notes, and snippets.

@serhiybutz
Created September 24, 2021 06:54
Show Gist options
  • Save serhiybutz/3fef97a3a444571cc91bcbb36ffd6a79 to your computer and use it in GitHub Desktop.
Save serhiybutz/3fef97a3a444571cc91bcbb36ffd6a79 to your computer and use it in GitHub Desktop.
public final class Property<T> {
internal var value: T
public init(value: T) {
self.value = value
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment