/// <summary>
 /// Initializes a new instance of the <see cref="TypingSetting" /> class.
 /// </summary>
 /// <param name="On">Should typing indication Events be sent.</param>
 public TypingSetting(SettingDirection On = null)
 {
     this.On = On;
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PresenceSetting" /> class.
 /// </summary>
 /// <param name="Join">Should Presence Events be sent.</param>
 public PresenceSetting(SettingDirection Join = null)
 {
     this.Join = Join;
 }