123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using InABox.Core;
- namespace comal.timesheets
- {
- public class FormShell : Entity
- {
- public Guid ParentID { get; set; }
- public string TaskNumber { get; set; }
- public string AppliesTo { get; set; }
- public string Description { get; set; }
- public string QAData { get; set; }
- protected override void Init()
- {
- base.Init();
- ParentID = Guid.Empty;
- TaskNumber = "";
- AppliesTo = "";
- Description = "";
- QAData = "";
- }
- }
- }
|