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

39 lines
669 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenStack.Client.Powershell.Utility
{
public enum CoreServices
{
Identity,
ObjectStorage,
ImageManagement,
BlockStorage,
Compute
}
public class ServiceMap
{
private string _source;
private string _target;
public string Target
{
get { return _target; }
set { _target = value; }
}
public string Source
{
get { return _source; }
set { _source = value; }
}
}
}