﻿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<ReleaseArtist> ReleaseArtists { get; set; }
        = new List<ReleaseArtist>();

    public ICollection<SongArtist> SongArtists { get; set; }
        = new List<SongArtist>();
}