source: KernelRecordsMVC.Domain/Models/Album.cs@ d2eccb3

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

Initial commit

  • Property mode set to 100644
File size: 245 bytes
Line 
1namespace KernelRecordsMVC.Models;
2
3public class Album
4{
5 public long ReleaseId { get; set; }
6
7 public Release Release { get; set; } = null!;
8
9 public ICollection<AlbumSong> AlbumSongs { get; set; }
10 = new List<AlbumSong>();
11}
Note: See TracBrowser for help on using the repository browser.