Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save phillippelevidad/127f869f28d3439003f120a23e191327 to your computer and use it in GitHub Desktop.
Save phillippelevidad/127f869f28d3439003f120a23e191327 to your computer and use it in GitHub Desktop.
Customer Entity, initial version.
public class Customer : Entity
{
public Guid Id { get; set; }
public string Name { get; set; }
public bool IsAdvanced { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment