Travis Plummer 5804f93350 Feedback from Code Review Process
Change-Id: I8a7ab3ff699a688ea3fae25a4e26a8128f797d89
2014-07-02 12:34:27 -05:00

24 lines
484 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenStack.Client.Powershell.Utility
{
public class ServiceProviderAttribute : Attribute
{
private string _name;
public string Name
{
get { return _name; }
set { _name = value; }
}
public ServiceProviderAttribute(string name)
{
_name = name;
}
}
}