FormShell.cs 632 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using InABox.Core;
  5. namespace comal.timesheets
  6. {
  7. public class FormShell : Entity
  8. {
  9. public Guid ParentID { get; set; }
  10. public string TaskNumber { get; set; }
  11. public string AppliesTo { get; set; }
  12. public string Description { get; set; }
  13. public string QAData { get; set; }
  14. protected override void Init()
  15. {
  16. base.Init();
  17. ParentID = Guid.Empty;
  18. TaskNumber = "";
  19. AppliesTo = "";
  20. Description = "";
  21. QAData = "";
  22. }
  23. }
  24. }