mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-22 18:52:50 +08:00
21 lines
499 B
C#
21 lines
499 B
C#
using FreeSql.DataAnnotations;
|
|
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.Linq.Expressions;
|
|
|
|
namespace FreeSql.Internal.Model
|
|
{
|
|
public class IndexInfo
|
|
{
|
|
public string Name { get; set; }
|
|
public IndexColumnInfo[] Columns { get; set; }
|
|
public bool IsUnique { get; set; }
|
|
}
|
|
|
|
public class IndexColumnInfo
|
|
{
|
|
public ColumnInfo Column { get; set; }
|
|
public bool IsDesc { get; set; }
|
|
}
|
|
} |