Models: Add IDelivery for DeliveryParts

This commit is contained in:
2024-03-27 16:04:47 +01:00
parent a04f887b4d
commit cac0959fe7
3 changed files with 10 additions and 2 deletions

View File

@ -6,7 +6,7 @@ using System.Linq;
namespace Elwig.Models.Entities {
[Table("delivery_part"), PrimaryKey("Year", "DId", "DPNr")]
public class DeliveryPart {
public class DeliveryPart : IDelivery {
[Column("year")]
public int Year { get; set; }