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.
15 lines
385 B
15 lines
385 B
namespace Kean.Domain
|
|
{
|
|
/// <summary>
|
|
/// 表示 Domain 信息
|
|
/// </summary>
|
|
public interface IDomain
|
|
{
|
|
/// <summary>
|
|
/// 获取 Domain 信息
|
|
/// </summary>
|
|
/// <param name="index">标识</param>
|
|
/// <returns>Domain 信息</returns>
|
|
(string Name, SharedService SharedService) this[string index] { get; }
|
|
}
|
|
}
|