namespace FoodsharingSiegen.Contracts.Entity { public partial class Prospect { public bool Complete => Interactions?.Any(x => x.Type == InteractionType.Complete) == true; } }