namespace Deltares.DamEngine.Calculators.KernelWrappers.Assemblers
{
public static class XMLAttributes
{
public const string XmlAttributeBottomLevel = "BottomLevel";
public const string XmlAttributeHasPhreaticLevel = "HasPhreaticLevel";
public const string XmlAttributeID = "ID";
public const string XmlAttributeName = "Name";
public const string XmlAttributePhreaticLevel = "PhreaticLevel";
public const string XmlAttributeSoilID = "SoilID";
public const string XmlAttributeTopLevel = "TopLevel";
public const string XmlAttributeXCoordinate = "XCoordinate";
public const string XmlAttributeYCoordinate = "YCoordinate";
public const string XmlElementLayer = "Layer";
public const string XmlElementLayers = "Layers";
public const string XmlAttributeInBetweenSandLayerID = "InBetweenSandLayerID";
public const string XmlAttributeBottomSandLayerID = "BottomSandLayerID";
public const string XmlAttributeInfiltrationLayerID = "InfiltrationLayerID";
///
/// Holds the xml element name
///
public const string XmlElementName = "DamMStabDoc";
public const string XmlElementProfile = "Profile";
///
/// Holds the common part of the path to the embedded resource
///
private const string EmbeddedResourcePath = "Deltares.DamEngine.Calculators.KernelWrappers.DamMacroStabilityCommon.Xsd";
///
/// Holds the name of the xml schema
///
public const string XmlSchemaName = "DamMStabDocDefinition";
public const string XmlSchemaNameInput = "DamMStabInputDefinition";
///
/// Holds the xsd resource path
///
public const string XsdEmbeddedResourcePath = EmbeddedResourcePath + "." + XmlSchemaName + ".xsd";
public const string XsdEmbeddedResourcePathInput = EmbeddedResourcePath + "." + XmlSchemaNameInput + ".xsd";
///
/// Holds the xml namespace
///
public const string XmlElementNamespace = "http://deltares.nl/2008/" + XMLAttributes.XmlSchemaName;
}
}