⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aotest.cs

📁 ASAMODS BaseModel C#
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;

namespace ASAMODS.BaseModel
{
    public class AoTest:AoBase
    {

        private IList children;
        ///SET[0:?] OF AoSubTest OR SET[0:?] OF AoMeasurement
        ///MANDATORY ATTRIBUTE (required in application model)
        ///These relations may reference either instances of an application
        ///element derived from the base element AoSubTest or instances of
        ///an application element derived from the base element
        ///AoMeasurement, but not a combination of both.
        public IList Children
        {
            get { return children; }
            set { children = value; }
        }

        private AoEnvironment environment;

        /// <summary>
        /// SET[0:1] OF AoEnvironment
        ///INVERSE FOR tests
        /// </summary>
        public AoEnvironment Environment
        {
            get { return environment; }
            set { environment = value; }
        }

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -