18 lines
423 B
C#
18 lines
423 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
internal class NewExpressionInfo
|
|
{
|
|
public string LeftNameName { get; set; }
|
|
public string RightName { get; set; }
|
|
public string RightDbName { get; set; }
|
|
public string ShortName { get; set; }
|
|
public string Type { get; set; }
|
|
}
|
|
}
|