using System.ComponentModel.DataAnnotations; using Microsoft.EntityFrameworkCore; namespace PyroFetes.Models; [PrimaryKey(nameof(ContactId), nameof(ServiceProviderId))] public class ContactServiceProvider { [Required] public int ContactId { get; set; } [Required] public int ServiceProviderId { get; set; } public Contact? Contact { get; set; } public ServiceProvider? ServiceProvider { get; set; } }