Skip to content

Instantly share code, notes, and snippets.

@DavidSSL
Last active December 16, 2015 19:50
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 DavidSSL/33ad30a86c79eb517efc to your computer and use it in GitHub Desktop.
Save DavidSSL/33ad30a86c79eb517efc to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
namespace Before.Model
{
public class Member : Entity
{
public Member()
{
AssignedOffers = new List<Offer>();
}
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public ICollection<Offer> AssignedOffers { get; set; }
public int NumberOfActiveOffers { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment