You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
522 B
26 lines
522 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Apewer.Source
|
|
{
|
|
|
|
/// <summary>枚举的 SQL Server 源。</summary>
|
|
public class SqlServerSource
|
|
{
|
|
|
|
/// <summary></summary>
|
|
public string ServerName { get; set; }
|
|
|
|
/// <summary></summary>
|
|
public string InstanceName { get; set; }
|
|
|
|
/// <summary></summary>
|
|
public string IsClustered { get; set; }
|
|
|
|
/// <summary></summary>
|
|
public string Version { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|