source:
KernelRecordsMVC.Domain/Models/AlbumSong.cs@
08aefc6
| Last change on this file since 08aefc6 was 08aefc6, checked in by , 4 weeks ago | |
|---|---|
|
|
| File size: 233 bytes | |
| Line | |
|---|---|
| 1 | namespace KernelRecordsMVC.Models; |
| 2 | |
| 3 | public class AlbumSong |
| 4 | { |
| 5 | public long AlbumId { get; set; } |
| 6 | |
| 7 | public long SongId { get; set; } |
| 8 | |
| 9 | public Album Album { get; set; } = null!; |
| 10 | |
| 11 | public Song Song { get; set; } = null!; |
| 12 | } |
Note:
See TracBrowser
for help on using the repository browser.
