namespace KernelRecordsMVC.Models; public class Artist { public long ArtistId { get; set; } public string ArtistName { get; set; } = null!; public string? ArtistDescription { get; set; } public string? ArtistPhoto { get; set; } public ICollection ReleaseArtists { get; set; } = new List(); public ICollection SongArtists { get; set; } = new List(); }