mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-13 03:35:04 +00:00
10 lines
146 B
C#
10 lines
146 B
C#
using System;
|
|
|
|
namespace ICD.Common.Utils.Sqlite
|
|
{
|
|
public interface IIcdDataReader : IDisposable, IIcdDataRecord
|
|
{
|
|
bool Read();
|
|
}
|
|
}
|