mirror of
https://github.com/soukoku/ntwain.git
synced 2025-09-18 17:47:57 +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; }
|
|
}
|
|
}
|