mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
Add QuestDb
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user