Sic.Framework/MECF.Framework.Common/Aitex/Core/RT/RecipeCenter/Aitex.cs

34 lines
658 B
C#

using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.Xml.Schema;
using System.Xml.Serialization;
namespace Aitex.Core.RT.RecipeCenter
{
[Serializable]
[GeneratedCode("xsd", "4.0.30319.1")]
[DebuggerStepThrough]
[DesignerCategory("code")]
[XmlType(AnonymousType = true)]
[XmlRoot(Namespace = "", IsNullable = false)]
public class Aitex
{
private AitexTableRecipeFormat[] itemsField;
[XmlElement("TableRecipeFormat", Form = XmlSchemaForm.Unqualified)]
public AitexTableRecipeFormat[] Items
{
get
{
return itemsField;
}
set
{
itemsField = value;
}
}
}
}