2014-06-04 13:31:52 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2014-06-23 14:40:21 -05:00
|
|
|
|
namespace OpenStack.Client.Powershell.Utility
|
2014-06-04 13:31:52 -05:00
|
|
|
|
{
|
|
|
|
|
public class ServiceProviderAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
private string _name;
|
|
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get { return _name; }
|
|
|
|
|
set { _name = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ServiceProviderAttribute(string name)
|
|
|
|
|
{
|
|
|
|
|
_name = name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|