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

📄 sms.cs

📁 这个版本(InteliIM Open Kernel Release 2)是目前最新的(首次公开)
💻 CS
字号:
#region Using Directives

using System;
using System.Collections.Generic;
using System.Text;

#endregion

namespace Org.InteliIM.Applications.MiniTools.Sms
{
	/// <summary>
	/// Represents a Sms.
	/// </summary>
	public class Sms
	{
		/// <summary>
		/// Initializes a new instance of the Sms class.
		/// </summary>
		public Sms()
		{

		}
		
		private string carrier;

		/// <summary>
		/// Gets or sets the carrier.
		/// </summary>
		/// <value></value>
		public string Carrier
		{
			get
			{
				if (this.carrier == null)
					this.carrier = "";

				return this.carrier;
			}
			set
			{
				this.carrier = value;
			}
		}

		private string userName;

		/// <summary>
		/// Gets or sets the user name.
		/// </summary>
		/// <value></value>
		public string UserName
		{
			get
			{
				if (this.userName == null)
					this.userName = "";

				return this.userName;
			}
			set
			{
				this.userName = value;
			}
		}

		private string userPassword;

		/// <summary>
		/// Gets or sets the user password.
		/// </summary>
		/// <value></value>
		public string UserPassword
		{
			get
			{
				if (this.userPassword == null)
					this.userPassword = "";

				return this.userPassword;
			}
			set
			{
				this.userPassword = value;
			}
		}

		private string toMobile;

		/// <summary>
		/// Gets or sets the to mobile.
		/// </summary>
		/// <value></value>
		public string ToMobile
		{
			get
			{
				if (this.toMobile == null)
					this.toMobile = "";

				return this.toMobile;
			}
			set
			{
				this.toMobile = value;
			}
		}

		private string content;

		/// <summary>
		/// Gets or sets the content.
		/// </summary>
		/// <value></value>
		public string Content
		{
			get
			{
				if (this.content == null)
					this.content = "";

				return this.content;
			}
			set
			{
				this.content = value;
			}
		}

		private string messageType;

		/// <summary>
		/// Gets or sets the message type.
		/// </summary>
		/// <value></value>
		public string MessageType
		{
			get
			{
				if (this.messageType == null)
					this.messageType = "";

				return this.messageType;
			}
			set
			{
				this.messageType = value;
			}
		}
	}
}

⌨️ 快捷键说明

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