Skip to content

Instantly share code, notes, and snippets.

@maiconheck
Last active February 3, 2021 11: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 maiconheck/b201dea35a37303007b25c9189e40baa to your computer and use it in GitHub Desktop.
Save maiconheck/b201dea35a37303007b25c9189e40baa to your computer and use it in GitHub Desktop.
An anemic entity sample for blog posting.
public class Lead
{
public string Name { get; set; }
public string Email { get; set; }
public IList<Segment> Segments { get; set; }
public string Company { get; set; }
public string PhoneNumber { get; set; }
public string Address { get; set; }
public bool? Gender { get; set; }
public DateTime? BirthDate { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment