Fix in ContactServiceProvider.cs

This commit is contained in:
2025-10-08 11:15:25 +01:00
parent af208c152b
commit ad9c8aa42d

View File

@@ -9,6 +9,6 @@ public class ContactServiceProvider
[Required] public int ContactId { get; set; }
[Required] public int ServiceProviderId { get; set; }
public Product? Contact { get; set; }
public DeliveryNote? ServiceProvider { get; set; }
public Contact? Contact { get; set; }
public ServiceProvider? ServiceProvider { get; set; }
}