Realization.cs 680 B

1234567891011121314151617
  1. namespace qdr.app.bundleboiler.data.Model
  2. {
  3. public class Realization : DmBaseChildEntity<Bundle>
  4. {
  5. public DateTime? BundleCreated { get; set; }
  6. public DateTime? BundleShipped { get; set; }
  7. public DateTime? BundleInstalled { get; set; }
  8. public required bool Merged { get; set; }
  9. public string? MergedToLinkSCM { get; set; }
  10. public IList<Attachment> Attachments { get; set; } = new List<Attachment>();
  11. public required IList<Enumeration> Forks { get; set; }
  12. public required IList<Enumeration> Environments { get; set; }
  13. public required Enumeration BundleType { get; set; }
  14. }
  15. }