Files
FreeSql/Providers/FreeSql.Provider.TDengine/Attributes/TDengineSuperTableAttribute.cs
2024-09-13 15:58:50 +08:00

17 lines
348 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FreeSql.DataAnnotations
{
/// <summary>
/// TDengine 超级表
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class TDengineSuperTableAttribute : TableAttribute
{
}
}