source: KernelRecordsMVC.Domain/Models/SongArtist.cs@ 08aefc6

main
Last change on this file since 08aefc6 was 08aefc6, checked in by mmilevski <markomilevski3@…>, 4 weeks ago

Initial commit

  • Property mode set to 100644
File size: 280 bytes
Line 
1namespace KernelRecordsMVC.Models;
2
3public class SongArtist
4{
5 public long SongId { get; set; }
6
7 public long ArtistId { get; set; }
8
9 public long SongOrdinal { get; set; }
10
11 public Song Song { get; set; } = null!;
12
13 public Artist Artist { get; set; } = null!;
14}
Note: See TracBrowser for help on using the repository browser.