source: KernelRecordsMVC.Domain/Models/Release.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: 631 bytes
Line 
1namespace KernelRecordsMVC.Models;
2
3public class Release
4{
5 public long ReleaseId { get; set; }
6
7 public string Title { get; set; } = null!;
8
9 public string? RecordLabel { get; set; }
10
11 public string Genre { get; set; } = null!;
12
13 public DateTime ReleaseDate { get; set; }
14
15 public string CoverPhoto { get; set; } = null!;
16
17 public Album? Album { get; set; }
18
19 public SingleRelease? SingleRelease { get; set; }
20
21 public ICollection<Product> Products { get; set; }
22 = new List<Product>();
23
24 public ICollection<ReleaseArtist> ReleaseArtists { get; set; }
25 = new List<ReleaseArtist>();
26}
Note: See TracBrowser for help on using the repository browser.