Files
openstack-cli-powershell/Openstack.Client.Powershell/Utility/ServiceProviderAttribute.cs
Travis Plummer df2b85f6bb Added Deployment artifacts for Chcoclatey and reorged solution structure
Change-Id: I6059c2b8397499480a12f674d9a8edbe31f3f56f
2014-06-23 15:17:56 -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;
}
}
}