mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-24 11:42:51 +08:00
17 lines
321 B
C#
17 lines
321 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FreeSql.Internal.Model
|
|
{
|
|
public class FetchCallbackArgs<T>
|
|
{
|
|
public T Object { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否放弃继续读取
|
|
/// </summary>
|
|
public bool IsBreak { get; set; }
|
|
}
|
|
}
|