Skip to content

Commit

Permalink
compilation error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardt committed Jul 9, 2012
1 parent a6c7fb7 commit 8e8da49
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 6 deletions.
Expand Up @@ -2,9 +2,9 @@

namespace OpenStack.Nova.ServiceModel
{
public class CreateImageMetaData
public class CreateServerMetaData
{
public CreateImageMetaData ()
public CreateServerMetaData ()
{
}
}
Expand Down
@@ -0,0 +1,12 @@
using System;

namespace OpenStack.Nova.ServiceModel
{
public class DeleteServerMetaDataItem
{
public DeleteServerMetaDataItem ()
{
}
}
}

Expand Up @@ -2,9 +2,9 @@

namespace OpenStack.Nova.ServiceModel
{
public class GetImageMetaData
public class GetServerMetaData
{
public GetImageMetaData ()
public GetServerMetaData ()
{
}
}
Expand Down
@@ -0,0 +1,12 @@
using System;

namespace OpenStack.Nova.ServiceModel
{
public class GetServerMetaDataItem
{
public GetServerMetaDataItem ()
{
}
}
}

Expand Up @@ -2,9 +2,9 @@

namespace OpenStack.Nova.ServiceModel
{
public class UpdateImageMetaData
public class UpdateServerMetaData
{
public UpdateImageMetaData ()
public UpdateServerMetaData ()
{
}
}
Expand Down
@@ -0,0 +1,12 @@
using System;

namespace OpenStack.Nova.ServiceModel
{
public class UpdateServerMetaDataItem
{
public UpdateServerMetaDataItem ()
{
}
}
}

0 comments on commit 8e8da49

Please sign in to comment.