9 lines
199 B
C#
9 lines
199 B
C#
namespace FoodsharingSiegen.Contracts.Entity
|
|
{
|
|
|
|
public partial class Prospect
|
|
{
|
|
public bool Complete => Interactions?.Any(x => x.Type == InteractionType.Complete) == true;
|
|
}
|
|
}
|