net6.0 Ready to test

This commit is contained in:
2022-03-29 07:23:13 -07:00
parent 836f70ed7f
commit 289547180a
135 changed files with 3189 additions and 7648 deletions

View File

@ -19,4 +19,4 @@ public class EquipmentParameter
public override string ToString() => base.ToString();
public string ToStringWithDetails() => base.ToString();
}
}

View File

@ -8,4 +8,4 @@ public class Field
public string Description { get; }
public ParameterTypeDefinition TypeDefinition { get; }
public bool CanBeNull { get; }
}
}

View File

@ -8,4 +8,4 @@ public abstract class ParameterTypeDefinition
public string Description { get; }
public override string ToString() => base.ToString();
}
}

View File

@ -8,4 +8,4 @@ public class StructuredType : ParameterTypeDefinition
public StructuredType(string name, string description, IList<Field> fields) : base(name, description) { }
public IList<Field> Fields { get; }
}
}