Skip to content

Commit

Permalink
update xsd generated code
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Trupkin committed Jun 7, 2018
1 parent 81b8883 commit 4c5b9b3
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions Common/TDSQASystemAPI/TestPackage/TestPackageXsd.cs
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,8 @@ public partial class BlueprintElementScoringRule {

private bool computationOrderFieldSpecified;

private string measureField;

private string nameField;

/// <remarks/>
Expand Down Expand Up @@ -400,6 +402,17 @@ public bool computationOrderSpecified {
}
}

/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType="token")]
public string measure {
get {
return this.measureField;
}
set {
this.measureField = value;
}
}

/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType="token")]
public string name {
Expand Down Expand Up @@ -1094,6 +1107,8 @@ public partial class ItemGroupItem {

private PresentationsPresentation[] presentationsField;

private ItemGroupItemPoolProperty[] poolPropertiesField;

private ItemGroupItemItemScoreDimension[] itemScoreDimensionsField;

private ItemGroupItemTeacherHandScoring teacherHandScoringField;
Expand Down Expand Up @@ -1145,6 +1160,17 @@ public PresentationsPresentation[] Presentations {
}
}

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("PoolProperty", IsNullable=false)]
public ItemGroupItemPoolProperty[] PoolProperties {
get {
return this.poolPropertiesField;
}
set {
this.poolPropertiesField = value;
}
}

/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("ItemScoreDimension", IsNullable=false)]
public ItemGroupItemItemScoreDimension[] ItemScoreDimensions {
Expand Down Expand Up @@ -1318,6 +1344,41 @@ public string label {
}
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
public partial class ItemGroupItemPoolProperty {

private string nameField;

private string valueField;

/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType="token")]
public string name {
get {
return this.nameField;
}
set {
this.nameField = value;
}
}

/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute(DataType="token")]
public string value {
get {
return this.valueField;
}
set {
this.valueField = value;
}
}
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
Expand Down

0 comments on commit 4c5b9b3

Please sign in to comment.