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