Skip to content

Instantly share code, notes, and snippets.

@icebeam7
Created May 19, 2018 14:47
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 icebeam7/54bded6cae1482ed7d8b6855b1b9f725 to your computer and use it in GitHub Desktop.
Save icebeam7/54bded6cae1482ed7d8b6855b1b9f725 to your computer and use it in GitHub Desktop.
FaceBot: Persona.cs
using System;
namespace FaceBot.Modelos
{
[Serializable]
public class Persona
{
public string Nombre { get; set; }
public int Edad { get; set; }
public string FotoURL { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment