Fix typo in DeliveryPart

This commit is contained in:
2023-07-13 16:58:21 +02:00
parent ad538ba767
commit 8d9e713c81

View File

@ -105,6 +105,6 @@ namespace Elwig.Models {
public virtual ISet<DeliveryPartModifier> PartModifiers { get; private set; }
[NotMapped]
public IEnumerable<Modifier> Modifiiers => PartModifiers.Select(m => m.Modifier);
public IEnumerable<Modifier> Modifiers => PartModifiers.Select(m => m.Modifier);
}
}