/*
* Copyright 2012-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: MIT-0
*
* Description: Data model for existing account Security Groups for use
*/
using Amazon.EC2.Model;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace AWS.AutoScale.Console.Models
{
public class ConsoleSG : NotifyPropertyChangeBase
{
private SecurityGroup awsSecurityGroup;
private string displayname;
///
/// Display name of Security Group
///
public string DisplayName
{
get
{
return this.displayname;
}
set
{
this.displayname = value;
this.OnPropertyChanged("DisplayName");
}
}
///
/// Base Security Group object from AWS
///
public SecurityGroup SecurityGroup
{
get
{
return this.awsSecurityGroup;
}
set
{
this.awsSecurityGroup = value;
this.OnPropertyChanged("SecurityGroup");
}
}
}
}