sendsmsitem.cs

来自「飞信的收发使用csharp进行开发」· CS 代码 · 共 43 行

CS
43
字号
namespace Imps.Client.Pc
{
    using Imps.Client.Core;
    using System;

    internal class SendSMSItem
    {
        private Imps.Client.Core.Contact _contact;
        private string _content;

        public SendSMSItem(Imps.Client.Core.Contact contact, string content)
        {
            this._contact = contact;
            this._content = content;
        }

        public Imps.Client.Core.Contact Contact
        {
            get
            {
                return this._contact;
            }
            set
            {
                this._contact = value;
            }
        }

        public string Content
        {
            get
            {
                return this._content;
            }
            set
            {
                this._content = value;
            }
        }
    }
}

⌨️ 快捷键说明

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