Skip to content

Instantly share code, notes, and snippets.

@TinkerWorX
Created July 26, 2016 13:48
Show Gist options
  • Save TinkerWorX/16fb3511b0029531ce0c48a3cf5a7b11 to your computer and use it in GitHub Desktop.
Save TinkerWorX/16fb3511b0029531ce0c48a3cf5a7b11 to your computer and use it in GitHub Desktop.
namespace SimpleData.GS1
{
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace = "urn:gs1:shared:shared_common:xsd:3")]
public partial class MeasurementType : System.ComponentModel.INotifyPropertyChanged
{
private string measurementUnitCodeField;
private string codeListVersionField;
private decimal valueField;
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string measurementUnitCode
{
get
{
return this.measurementUnitCodeField;
}
set
{
this.measurementUnitCodeField = value;
this.RaisePropertyChanged("measurementUnitCode");
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAttributeAttribute()]
public string codeListVersion
{
get
{
return this.codeListVersionField;
}
set
{
this.codeListVersionField = value;
this.RaisePropertyChanged("codeListVersion");
}
}
/// <remarks/>
[System.Xml.Serialization.XmlTextAttribute()]
public decimal Value
{
get
{
return this.valueField;
}
set
{
this.valueField = value;
this.RaisePropertyChanged("Value");
}
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName)
{
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null))
{
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment