mirror of
https://github.com/soukoku/ntwain.git
synced 2025-11-09 02:58:00 +08:00
18 lines
341 B
C#
18 lines
341 B
C#
|
|
using System;
|
|||
|
|
namespace NTwain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Represents a TWAIN data source.
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IDataSource
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets the source's product name.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <value>
|
|||
|
|
/// The name.
|
|||
|
|
/// </value>
|
|||
|
|
string Name { get; }
|
|||
|
|
}
|
|||
|
|
}
|