Skip to content

Instantly share code, notes, and snippets.

@gbellmann
Last active August 29, 2015 14:17
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 gbellmann/9c4cd9edfb613c62d1a7 to your computer and use it in GitHub Desktop.
Save gbellmann/9c4cd9edfb613c62d1a7 to your computer and use it in GitHub Desktop.
[SerializePropertyNamesAsCamelCase]
public class Pelicula
{
public string PeliculaId { get; set; }
public string Titulo { get; set; }
public string Director { get; set; }
public string[] Actores { get; set; }
public string Genero { get; set; }
public int? Rating { get; set; }
public DateTimeOffset? FechaEstreno { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment