Ejemplo n.º 1
0
 /// <summary>
 /// Copy constructor
 /// </summary>
 /// <param name="other">Existing instance from which to copy the property values</param>
 public SourceSettings( SourceSettings other ) : base( other )
 {
     this.UserName = other.UserName;
     this.DevKey = other.DevKey;
     this.MemberToken = other.MemberToken;
     this.BoardName = other.BoardName;
     this.OpenCardLists = other.OpenCardLists;
     this.ClosedCardLists = other.ClosedCardLists;
     this.NewCardList = other.NewCardList;
 }
Ejemplo n.º 2
0
 public RuntimeSourceSettings( SourceSettings other ) : base( other )
 {
 }