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

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

Initial commit

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