using System;
namespace SQLite
{
public class IgnoreAttribute : Attribute
{
public IgnoreAttribute()
{
}
}
public class PropertyIndexAttribute : Attribute
{
///
/// 标识
///
public int Index { get; set; }
///
///
///
///
public PropertyIndexAttribute(int index)
{
Index = index;
}
}
public class TimeAttribute : Attribute
{
}
}