示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ShareContent" /> class.
 /// </summary>
 /// <param name="Type">Type of content to be shared.  Currently only support \&quot;com.symphony.sharing.article\&quot;.</param>
 /// <param name="Content">Content.</param>
 public ShareContent(string Type = default(string), ShareArticle Content = default(ShareArticle))
 {
     this.Type    = Type;
     this.Content = Content;
 }
示例#2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="ShareContent" /> class.
        /// </summary>
        /// <param name="Type">Type of content to be shared.  Currently only support \&quot;com.symphony.sharing.article\&quot;.</param>
        /// <param name="Content">Content.</param>
        public ShareContent(string Type = null, ShareArticle Content = null)
        {
            this.Type = Type;

            this.Content = Content;
        }