wsp-10329 Adding hyper-v replica to HyperV Provider. Server Part 5.

This commit is contained in:
Alexander Trofimov 2015-04-17 15:35:12 -04:00
parent 9685e61e7e
commit bbd165fdbd
6 changed files with 57 additions and 32 deletions

View file

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebsitePanel.Providers.Virtualization
{
public class ReplicationServerInfo
{
public bool Enabled { get; set; }
public string ComputerName { get; set; }
}
}