office.cs

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

CS
29
字号
using System;

namespace NHibernate.Test.NHSpecificTest.NH276
{
	public class Office
	{
		private int _id;
		private string _worker;
		private Building _location;

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

		public string Worker
		{
			get { return _worker; }
			set { _worker = value; }
		}

		public Building Location
		{
			get { return _location; }
			set { _location = value; }
		}
	}
}

⌨️ 快捷键说明

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