mirror of
				https://github.com/nsnail/FreeSql.git
				synced 2025-11-04 09:15:27 +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;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |