mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-10 03:30:51 +08:00
21 lines
537 B
C#
21 lines
537 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Yi.Framework.Ddd.Application.Contracts;
|
|
|
|
namespace Yi.Framework.TenantManagement.Application.Contracts.Dtos
|
|
{
|
|
public class TenantGetListInput: PagedAllResultRequestDto
|
|
{
|
|
public string? Name { get; set; }
|
|
//public int? EntityVersion { get; set; }
|
|
|
|
//public string? TenantConnectionString { get; set; }
|
|
|
|
//public DbType? DbType { get; set; }
|
|
}
|
|
}
|