using Microsoft.EntityFrameworkCore; public class Song { public int SongId { get; set; } public string? Name { get; set; } public string? Artist { get; set; } public string? Url { get; set; } public SongProvider? Provider { get; set; } public string? SpotifyId { get; set; } }