namespace DatabaseExport { /// /// we will want to remove or add hardware overriding what hardware would be in the test /// based solely on groups in the test /// this way we can have dasless groups /// public class HardwareInclusionInstruction { public string HardwareId { get; } public enum Actions { Remove, //hardware may be included in test by a group, but ignore it and don't include the hardware... Add //hardware is not included in test by a group, but add it anyhow } public Actions Action { get; } public HardwareInclusionInstruction(string hardwareId, Actions action) { HardwareId = hardwareId; Action = action; } } }