13 lines
297 B
C#
13 lines
297 B
C#
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; }
|
|
}
|
|
}
|