Files
AP-WEB-PF3/PF3/Models/ProviderContact.cs

12 lines
317 B
C#

using Microsoft.EntityFrameworkCore;
namespace PF3.Models;
[PrimaryKey(nameof(ContactId), nameof(ProviderId))]
public class ProviderContact
{
public int ProviderId { get; set; }
public ServiceProvider? Provider { get; set; }
public int ContactId { get; set; }
public Contact? Contact { get; set; }
}