增加SIP协议,未完成!
nnhy authored at 2011-12-31 17:32:24
397.00 B
X
using System;
using System.Collections.Generic;
using System.Text;

namespace NewLife.Net.Sip.Message
{
    /// <summary></summary>
    public class SipAlertParam : SipValueWithParams
    {
        #region 属性
        private String _Uri;
        /// <summary>标识</summary>
        public String Uri { get { return _Uri; } set { _Uri = value; } }
        #endregion
    }
}