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

📄 scenes.cs

📁 该源代码用 C# 写成
💻 CS
字号:
namespace Org.InteliIM.Activities.Conversations
{
	/// <summary>
	/// 谈话场景
	/// </summary>
	public class Scene
	{
		private string id;
		
		/// <summary>
		/// 
		/// </summary>
		public string Id
		{
			get
			{
				if(this.id == null)
					this.id = "";
				
				return this.id;
			}
			set
			{
				this.id = value;
			}
		}
		
		private string name;

		/// <summary>
		/// 
		/// </summary>
		public string Name
		{
			get
			{
				if(this.name == null)
					this.name = "";
				
				return this.name;
			}
			set
			{
				this.name = value;
			}
		}
		
		private string description;

		/// <summary>
		///	
		/// </summary>
		public string Description
		{
			get
			{
				if(this.description == null)
					this.description = "";
				
				return this.description;
			}
			set
			{
				this.description = value;
			}
		}
	}

	/// <summary>
	/// 办公室场景
	/// </summary>
	public class OfficeScene
		: Scene
	{
	}

	/// <summary>
	/// 会议室场景
	/// </summary>
	public class MeetingRoomScene
		: Scene
	{
	}

	/// <summary>
	/// 走廊场景
	/// </summary>
	public class CorridorScene
		: Scene
	{
	}
}

⌨️ 快捷键说明

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