source: KernelRecordsMVC.Domain/Models/Artist.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: 453 bytes
Line 
1namespace KernelRecordsMVC.Models;
2
3public class Artist
4{
5 public long ArtistId { get; set; }
6
7 public string ArtistName { get; set; } = null!;
8
9 public string? ArtistDescription { get; set; }
10
11 public string? ArtistPhoto { get; set; }
12
13 public ICollection<ReleaseArtist> ReleaseArtists { get; set; }
14 = new List<ReleaseArtist>();
15
16 public ICollection<SongArtist> SongArtists { get; set; }
17 = new List<SongArtist>();
18}
Note: See TracBrowser for help on using the repository browser.