Files
2026-07-10 15:25:05 +08:00

23 lines
374 B
C#

using System;
using System.Collections;
using System.Text;
namespace Zhaizj.Framework.ORM.Finder
{
internal abstract class FinderBase
{
protected ObjectInfo state;
public FinderBase()
{
}
public FinderBase(ObjectInfo state)
{
this.state = state;
}
public abstract IList Find();
}
}