Skip to content

Instantly share code, notes, and snippets.

@maiconheck
Last active June 23, 2023 18:24
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/98dc2a48ffbb19fa7fdf47a9815df13c to your computer and use it in GitHub Desktop.
Save maiconheck/98dc2a48ffbb19fa7fdf47a9815df13c to your computer and use it in GitHub Desktop.
Executar Campanha Context
public class Lead : Entity
{
private readonly List<Segment> _segments = new List<Segment>();
public Name Name { get; }
public Email Email { get; }
public IReadOnlyCollection<Segment> Segments => _segments.ToList();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment