1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- namespace VidFilesUpgradeTool
- {
- class DiagnosisPackage : TrackableEntity
- {
- public string Name { get; set; }
- public string Description { get; set; }
- public AdminInfo CreateAdmin { get; set; }
- public ICollection<DiagnosisItemInfo> DiagnosisItems { get; set; }
- }
- class DiagnosisItem : TrackableEntity
- {
- public string Name { get; set; }
- public string Description { get; set; }
- public AdminInfo CreateAdmin { get; set; }
- }
- }
|