Пример #1
0
 /// <summary>
 /// Initializes a new instance of the Deployment class.
 /// </summary>
 public Deployment(string name, string key = default(string), CodePushRelease latestRelease = default(CodePushRelease))
 {
     Key           = key;
     Name          = name;
     LatestRelease = latestRelease;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the DeploymentInternal class.
 /// </summary>
 public DeploymentInternal(string name, string key = default(string), CodePushRelease latestRelease = default(CodePushRelease), string id = default(string))
     : base(name, key, latestRelease)
 {
     Id = id;
     CustomInit();
 }