13 lines
200 B
C#
13 lines
200 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Bind
|
|||
|
{
|
|||
|
interface IBind
|
|||
|
{
|
|||
|
//ISpecReader SpecReader { get; }
|
|||
|
void Process();
|
|||
|
}
|
|||
|
}
|