source: KernelRecordsMVC.Domain/Models/SingleRelease.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: 316 bytes
Line 
1namespace KernelRecordsMVC.Models;
2
3public class SingleRelease
4{
5 public long ReleaseId { get; set; }
6
7 public string Duration { get; set; } = null!;
8
9 public Release Release { get; set; } = null!;
10
11 public ICollection<SingleFeature> SingleFeatures { get; set; }
12 = new List<SingleFeature>();
13}
Note: See TracBrowser for help on using the repository browser.