18 lines
355 B
C#
18 lines
355 B
C#
using JNPF.DependencyInjection;
|
|
using SqlSugar;
|
|
|
|
namespace JNPF.Common.Dtos.OAuth;
|
|
|
|
/// <summary>
|
|
/// 多租户网络连接输出.
|
|
/// </summary>
|
|
[SuppressSniffer]
|
|
public class TenantInterFaceOutput
|
|
{
|
|
/// <summary>
|
|
/// DotNet.
|
|
/// </summary>
|
|
public string dotnet { get; set; }
|
|
|
|
public List<TenantLinkModel>? linkList { get; set; }
|
|
} |