必须填写至少10个字的日志
nnhy 编写于 2012-07-27 18:48:21
X
using System;
using System.Collections.Generic;
using System.Text;

namespace NewLife.Net.Sip.Message
{
    /// <summary></summary>
    public class SipEncoding : SipValueWithParams
    {
        #region 属性
        private String _ContentEncoding;
        /// <summary>属性说明</summary>
        public String ContentEncoding { get { return _ContentEncoding; } set { _ContentEncoding = value; } }
        #endregion

        #region 扩展属性
        private Double _QValue;
        /// <summary>qvalue</summary>
        public Double QValue { get { return _QValue; } set { _QValue = value; } }
        #endregion
    }
}