Beispiel #1
0
 public Application(
     string name,
     ImmutableList <Image> images,
     ApplicationSource source,
     bool autoDeploy,
     NotificationSettings notifications
     )
 {
     Name          = name;
     Images        = images;
     Source        = source;
     AutoDeploy    = autoDeploy;
     Notifications = notifications;
 }
Beispiel #2
0
 protected bool Equals(NotificationSettings other)
 {
     return(Channels.Equals(other.Channels));
 }