mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-19 17:22:50 +08:00
20 lines
441 B
C#
20 lines
441 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FreeSql.Provider.QuestDb.Subtable
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property, Inherited = true)]
|
|
public class AutoSubtableAttribute : Attribute
|
|
{
|
|
public SubtableType? SubtableType
|
|
{
|
|
get; set;
|
|
}
|
|
public AutoSubtableAttribute(SubtableType type)
|
|
{
|
|
SubtableType = type;
|
|
}
|
|
}
|
|
}
|