﻿using KernelRecordsMVC.Domain.Models;

namespace KernelRecordsMVC.Models;

public class SongArtist
{
    public long SongId { get; set; }

    public long ArtistId { get; set; }

    public long SongOrdinal { get; set; }

    public Song Song { get; set; } = null!;

    public Artist Artist { get; set; } = null!;
}