using Microsoft.EntityFrameworkCore; public class SongSuggestion { public int Id { get; set; } public User? User { get; set; } public Song? Song { get; set; } public DateTime Date { get; set; } }