model.cs

来自「NHibernate NET开发者所需的」· CS 代码 · 共 62 行

CS
62
字号
using System;
using System.Collections.Generic;
using System.Text;

namespace NHibernate.Test.NHSpecificTest.NH1098
{
    class A
    {
        private int id;

        public int Id
        {
            get { return id; }
            set { id = value; }
        }

        private int valueA;

        public int ValueA
        {
            get { return valueA; }
            set { valueA = value; }
        }

        private bool enabled;

        public bool Enabled
        {
            get { return enabled; }
            set { enabled = value; }
        }

    }

    class B
    {
        private int id;

        public int Id
        {
            get { return id; }
            set { id = value; }
        }

        private int valueB;

        public int ValueB
        {
            get { return valueB; }
            set { valueB = value; }
        }

        private bool enabled;

        public bool Enabled
        {
            get { return enabled; }
            set { enabled = value; }
        }
    }
}

⌨️ 快捷键说明

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