/// <summary>
 /// Creates a new instance of JiraNamedConstant.
 /// </summary>
 /// <param name="remoteConstant"></param>
 public JiraNamedConstant(AbstractRemoteConstant remoteConstant) :
     base(remoteConstant)
 {
     this._remoteConstant = remoteConstant;
 }
Exemple #2
0
 internal JiraConstant(AbstractRemoteConstant remoteConstant) :
     base(remoteConstant)
 {
     this.Description = remoteConstant.description;
 }