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

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

Minor fixes.

  • Property mode set to 100644
File size: 436 bytes
Line 
1using KernelRecordsMVC.Models;
2
3namespace KernelRecordsMVC.Domain.Models;
4
5public class Song
6{
7 public long SongId { get; set; }
8
9 public string SongName { get; set; } = null!;
10
11 public string SongDuration { get; set; } = null!;
12
13 public ICollection<AlbumSong> AlbumSongs { get; set; }
14 = new List<AlbumSong>();
15
16 public ICollection<SongArtist> SongArtists { get; set; }
17 = new List<SongArtist>();
18
19}
Note: See TracBrowser for help on using the repository browser.