Files
FreeSql/Providers/FreeSql.Provider.TDengine/Describes/SuperTableDescribe.cs
2024-09-13 14:18:36 +08:00

22 lines
457 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FreeSql.TDengine.Describes
{
internal class SuperTableDescribe
{
/// <summary>
/// 超级表Type
/// </summary>
public Type SuperTableType { get; set; }
/// <summary>
/// 超级表名称
/// </summary>
public string SuperTableName { get; set; }
}
}