Mercurial > pub > bltoolkit
annotate Source/Data/Linq/Builder/SequenceConvertPath.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 using System.Diagnostics; | |
3 using System.Linq.Expressions; | |
4 | |
5 using JetBrains.Annotations; | |
6 | |
7 namespace BLToolkit.Data.Linq.Builder | |
8 { | |
9 [DebuggerDisplay("Path = {Path}, Expr = {Expr}, Level = {Level}")] | |
10 public class SequenceConvertPath | |
11 { | |
12 [NotNull] public Expression Path; | |
13 [NotNull] public Expression Expr; | |
14 public int Level; | |
15 } | |
16 } |