mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 20:57:22 +02:00
19 lines
366 B
C#
19 lines
366 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Data.Common;
|
|||
|
|
using System.Data.OleDb;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace Microsoft.Plugin.Indexer.SearchHelper
|
|||
|
|
{
|
|||
|
|
public class OleDBResult
|
|||
|
|
{
|
|||
|
|
public List<object> fieldData;
|
|||
|
|
|
|||
|
|
public OleDBResult(List<object> fieldData)
|
|||
|
|
{
|
|||
|
|
this.fieldData = fieldData;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|