Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created February 2, 2019 15:36
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 fitomad/bd5e30020763432792680e513b9cb4aa to your computer and use it in GitHub Desktop.
Save fitomad/bd5e30020763432792680e513b9cb4aa to your computer and use it in GitHub Desktop.
import Foundation
public class Usuario: NSObject
{
/// Nombre del usuario.
/// Propiedad de la que queremos saber sus cambios
@objc dynamic public var nombre: String
/**
Creamos un nuevo usuario
*/
public init(named nombre: String)
{
self.nombre = nombre
super.init()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment