Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save phillippelevidad/8a5bf45a5fd99aea8048742542105e06 to your computer and use it in GitHub Desktop.
Save phillippelevidad/8a5bf45a5fd99aea8048742542105e06 to your computer and use it in GitHub Desktop.
Customer Entity, after new requirements.
public class Customer : Entity
{
[Id]
public Guid Id { get; set; }
[Required]
[MaxLength(50)
public string Name { get; set; }
public DateTime BirthDate { get; set; }
public CustomerLevel Level { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment